[Xfce4-commits] Replace GtkImage with GtkButton in Tabwin and reorder layout accordingly

2013-07-08 Thread Simon Steinbeiss
Updating branch refs/heads/ochosi/tabwin
 to 71fc0de4b3f4da1e6de43a89fdd7d9761e358d4d (commit)
   from b2423468e8ce6fb18ec624a208e7332b23468625 (commit)

commit 71fc0de4b3f4da1e6de43a89fdd7d9761e358d4d
Author: Simon Steinbeiss 
Date:   Tue Jul 9 01:20:08 2013 +0200

Replace GtkImage with GtkButton in Tabwin and reorder layout accordingly

 src/tabwin.c |  104 ++
 src/tabwin.h |1 -
 2 files changed, 32 insertions(+), 73 deletions(-)

diff --git a/src/tabwin.c b/src/tabwin.c
index c130418..3111fb0 100644
--- a/src/tabwin.c
+++ b/src/tabwin.c
@@ -101,18 +101,8 @@ paint_selected (GtkWidget *w, GdkEventExpose *event, 
gpointer data)
 g_return_val_if_fail (GTK_IS_WIDGET(w), FALSE);
 TRACE ("entering paint_selected");
 
-gtk_draw_flat_box (w->style, w->window,
-GTK_STATE_SELECTED,
-GTK_SHADOW_NONE,
-w->allocation.x - WIN_ICON_BORDER,
-w->allocation.y - WIN_ICON_BORDER,
-w->allocation.width + 2 * WIN_ICON_BORDER,
-w->allocation.height + 2 * WIN_ICON_BORDER);
-gtk_draw_focus (w->style, w->window,
-w->allocation.x - WIN_ICON_BORDER,
-w->allocation.y - WIN_ICON_BORDER,
-w->allocation.width + 2 * WIN_ICON_BORDER,
-w->allocation.height + 2 * WIN_ICON_BORDER);
+gtk_button_set_relief (GTK_BUTTON (w), GTK_RELIEF_NORMAL);
+
 return FALSE;
 }
 
@@ -124,8 +114,8 @@ pretty_string (const gchar *s)
 
 if (s)
 {
-canonical = g_ascii_strup (s, -1);
-g_strcanon (canonical, "[]()0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ", ' 
');
+canonical = g_strdup_printf ("%s",s);
+g_strcanon (canonical, 
"[]()0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz", ' ');
 g_strstrip (canonical);
 }
 else
@@ -139,7 +129,6 @@ pretty_string (const gchar *s)
 static void
 tabwinSetLabel (TabwinWidget *tbw, gchar *class, gchar *label, int workspace)
 {
-gchar *markup;
 gchar *message;
 PangoLayout *layout;
 
@@ -147,12 +136,9 @@ tabwinSetLabel (TabwinWidget *tbw, gchar *class, gchar 
*label, int workspace)
 TRACE ("entering tabwinSetLabel");
 
 message = pretty_string (class);
-markup = g_strconcat ("", message, 
"", NULL);
+gtk_button_set_label (GTK_BUTTON (tbw->selected), message);
 g_free (message);
 
-gtk_label_set_markup (GTK_LABEL (tbw->class), markup);
-g_free (markup);
-
 if (tbw->tabwin->display_workspace)
 {
 message = g_strdup_printf ("[%i] - %s", workspace + 1, label);
@@ -217,7 +203,6 @@ createWindowIcon (Client *c, gint icon_size)
 icon_pixbuf = getAppIcon (c->screen_info->display_info, c->window, 
icon_size, icon_size);
 icon_pixbuf_stated = NULL;
 icon = gtk_image_new ();
-g_object_set_data (G_OBJECT (icon), "client-ptr-val", c);
 
 if (icon_pixbuf)
 {
@@ -261,7 +246,7 @@ createWindowlist (ScreenInfo *screen_info, TabwinWidget 
*tbw)
 {
 Client *c;
 GList *client_list;
-GtkWidget *windowlist, *icon, *selected;
+GtkWidget *windowlist, *icon, *selected, *window_button;
 int packpos, monitor_width;
 Tabwin *t;
 gint icon_size = WIN_ICON_SIZE;
@@ -280,29 +265,35 @@ createWindowlist (ScreenInfo *screen_info, TabwinWidget 
*tbw)
 tbw->grid_rows = screen_info->client_count / tbw->grid_cols + 1;
 tbw->widgets = NULL;
 windowlist = gtk_table_new (tbw->grid_rows, tbw->grid_cols, FALSE);
-
 /* pack the client icons */
 for (client_list = *t->client_list; client_list; client_list = g_list_next 
(client_list))
 {
 c = (Client *) client_list->data;
 TRACE ("createWindowlist: adding %s", c->name);
 icon = createWindowIcon (c, icon_size);
-gtk_table_attach (GTK_TABLE (windowlist), GTK_WIDGET (icon),
+
+window_button = gtk_button_new_with_label ("");
+g_object_set_data (G_OBJECT (window_button), "client-ptr-val", c);
+gtk_button_set_image (GTK_BUTTON (window_button), icon);
+gtk_button_set_image_position (GTK_BUTTON (window_button), 
GTK_POS_TOP);
+gtk_button_set_relief (GTK_BUTTON (window_button), GTK_RELIEF_NONE);
+gtk_widget_set_size_request (GTK_WIDGET (window_button), icon_size+24, 
icon_size+24);
+
+gtk_table_attach (GTK_TABLE (windowlist), GTK_WIDGET (window_button),
 packpos % tbw->grid_cols, packpos % tbw->grid_cols + 1,
 packpos / tbw->grid_cols, packpos / tbw->grid_cols + 1,
-GTK_FILL, GTK_FILL, 7, 7);
-tbw->widgets = g_list_append (tbw->widgets, icon);
+GTK_FILL, GTK_FILL, 2, 2);
+tbw->widgets = g_list_append (tbw->widgets, window_button);
 packpos++;
 if (c == t->selected->data)
 {
-selected = icon;
+selected = window_button;
 }
 }
 if (selected)
 {
 tabwinSetSelected (tbw, selected);
 }
-
 return windowlist;
 }
 
@@ -360,11 +351,8 @@ static 

[Xfce4-commits] Creating branch ochosi/tabwin

2013-07-08 Thread Simon Steinbeiss
Updating branch refs/heads/ochosi/tabwin
 as new branch
 to 71fc0de4b3f4da1e6de43a89fdd7d9761e358d4d (commit)

Branches are created implicitly by pushing. This mail only exists to 
let you know that there was code pushed to 

  refs/heads/ochosi/tabwin

for the first time. Mails for the commits that lead to the creation 
of the branch will follow after this mail.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Fix crash in xkb_util_normalize_group_name

2013-07-08 Thread Igor Slepchin
Updating branch refs/heads/master
 to afc0c84257d33e712b06cc3e5de7b0fe63480ebd (commit)
   from 215e99df0124d4045f97f2f4b2aa637d77b811a1 (commit)

commit afc0c84257d33e712b06cc3e5de7b0fe63480ebd
Author: Igor Slepchin 
Date:   Fri Jun 7 17:50:11 2013 -0400

Fix crash in xkb_util_normalize_group_name

Correctly compute offset of the first separator char in group name.
(cherry picked from commit 9995998bcf8b07e2ad5c15eb6500f40b970daed5)

 panel-plugin/xkb-util.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/panel-plugin/xkb-util.c b/panel-plugin/xkb-util.c
index 324928f..1e64cfc 100644
--- a/panel-plugin/xkb-util.c
+++ b/panel-plugin/xkb-util.c
@@ -81,7 +81,7 @@ xkb_util_normalize_group_name (const gchar* group_name)
 {
 if (!((*c >= 'a' && *c <= 'z') || (*c >= 'A' && *c <= 'Z')))
 {
-index_of_na = group_name - c;
+index_of_na = c - group_name;
 break;
 }
 }
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] I18n: Update translation sr (100%).

2013-07-08 Thread Transifex
Updating branch refs/heads/master
 to 215e99df0124d4045f97f2f4b2aa637d77b811a1 (commit)
   from 35765862b1dbdcf3adf88bdcb810bac8b0dfe19d (commit)

commit 215e99df0124d4045f97f2f4b2aa637d77b811a1
Author: salepetronije 
Date:   Mon Jul 8 18:32:06 2013 +0200

I18n: Update translation sr (100%).

17 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/sr.po |  101 +
 1 files changed, 28 insertions(+), 73 deletions(-)

diff --git a/po/sr.po b/po/sr.po
index 86e3409..53b54a8 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,134 +1,89 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-# Саша Петровић , 2012.
-#
+# 
+# Translators:
+# salepetronije , 2012-2013
 msgid ""
 msgstr ""
-"Project-Id-Version: master\n"
+"Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-11-04 21:50+0600\n"
-"PO-Revision-Date: 2012-09-27 10:25+0200\n"
-"Last-Translator: Саша Петровић \n"
-"Language-Team: српски \n"
-"Language: \n"
+"POT-Creation-Date: 2013-07-03 21:34+0200\n"
+"PO-Revision-Date: 2013-07-08 12:48+\n"
+"Last-Translator: salepetronije \n"
+"Language-Team: Serbian 
(http://www.transifex.com/projects/p/xfce/language/sr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
-"%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Gtranslator 2.91.5\n"
+"Language: sr\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && 
n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
-#: ../panel-plugin/xkb-settings-dialog.c:489
-msgid ""
-"XKB configuration modifications are\n"
-"disabled from the config file.\n"
-"\n"
-"See the README file for more information."
-msgstr ""
-"XKB измене подешавања су\n"
-"онемогућене из датотеке подешавања.\n"
-"\n"
-"Погледајте README датотеку за више податка."
-
-#: ../panel-plugin/xkb-settings-dialog.c:515
+#: ../panel-plugin/xkb-settings-dialog.c:112
 #: ../panel-plugin/xkb-plugin.desktop.in.in.h:1
 msgid "Keyboard Layouts"
 msgstr "Распореди тастатуре"
 
-#: ../panel-plugin/xkb-settings-dialog.c:537
-msgid "Keyboard model:"
-msgstr "Модел тастатуре:"
-
-#. toggle layout option
-#: ../panel-plugin/xkb-settings-dialog.c:562
-msgid "Change layout option:"
-msgstr "Измени могућности распореда:"
-
-#. compose key position option
-#: ../panel-plugin/xkb-settings-dialog.c:588
-msgid "Compose key position:"
-msgstr "Положај тастера композе:"
-
-#. the actual layouts
-#: ../panel-plugin/xkb-settings-dialog.c:615
-msgid "Keyboard layouts:"
-msgstr "Распореди тастатуре:"
-
-#: ../panel-plugin/xkb-settings-dialog.c:628
-msgid "Default"
-msgstr "Подразумевано"
-
-#: ../panel-plugin/xkb-settings-dialog.c:635
-msgid "Layout"
-msgstr "Распоред"
-
-#: ../panel-plugin/xkb-settings-dialog.c:643
-msgid "Variant"
-msgstr "Подврста"
-
 #. ***
-#: ../panel-plugin/xkb-settings-dialog.c:687
+#: ../panel-plugin/xkb-settings-dialog.c:122
 msgid "Show layout as:"
 msgstr "Приказ распоред као:"
 
-#: ../panel-plugin/xkb-settings-dialog.c:692
+#: ../panel-plugin/xkb-settings-dialog.c:127
 msgid "image"
 msgstr "слика"
 
-#: ../panel-plugin/xkb-settings-dialog.c:693
+#: ../panel-plugin/xkb-settings-dialog.c:128
 msgid "text"
 msgstr "текст"
 
 #. text size option
-#: ../panel-plugin/xkb-settings-dialog.c:698
+#: ../panel-plugin/xkb-settings-dialog.c:133
 msgid "Text size:"
 msgstr "Величина текста:"
 
-#: ../panel-plugin/xkb-settings-dialog.c:703
+#: ../panel-plugin/xkb-settings-dialog.c:138
 msgid "small"
 msgstr "мали"
 
-#: ../panel-plugin/xkb-settings-dialog.c:704
+#: ../panel-plugin/xkb-settings-dialog.c:139
 msgid "medium"
 msgstr "средњи"
 
-#: ../panel-plugin/xkb-settings-dialog.c:705
+#: ../panel-plugin/xkb-settings-dialog.c:140
 msgid "large"
 msgstr "велики"
 
-#: ../panel-plugin/xkb-settings-dialog.c:709
+#: ../panel-plugin/xkb-settings-dialog.c:144
 msgid "Manage layout:"
 msgstr "Управљај распоредом:"
 
-#: ../panel-plugin/xkb-settings-dialog.c:714
+#: ../panel-plugin/xkb-settings-dialog.c:149
 msgid "globally"
 msgstr "опште"
 
-#: ../panel-plugin/xkb-settings-dialog.c:715
+#: ../panel-plugin/xkb-settings-dialog.c:150
 msgid "per window"
 msgstr "за сваки прозор"
 
-#: ../panel-plugin/xkb-settings-dialog.c:716
+#: ../panel-plugin/xkb-settings-dialog.c:151
 msgid "per application"
 msgstr "по програму"
 
-#: ../panel-plugin/xkb-settings-dialog.c:758
+#: ../panel-plugin/xkb-settings-dialog.c:185
 msgid "Keyboard Layouts Plugin"
 msgstr "Прикључци распореда тастатуре"
 
-#: ../panel-plugin/xkb-settings-dialog.c:764
+#: ../panel-plugin/xkb-settings-dialog.c:195
 msgid "Allows you to configure and use multiple keyboard layouts."
 msgstr "Омогућава да подесите и користите вишеструке ра

[Xfce4-commits] I18n: Update translation sr (100%).

2013-07-08 Thread Transifex
Updating branch refs/heads/master
 to ba3d93265ce4d2c5365f348ba89b02df56a13bad (commit)
   from 3744bcb4c98cfc0bf193e3154cbcf9f11f8147fe (commit)

commit ba3d93265ce4d2c5365f348ba89b02df56a13bad
Author: salepetronije 
Date:   Mon Jul 8 18:32:16 2013 +0200

I18n: Update translation sr (100%).

184 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/sr.po |  583 --
 1 files changed, 221 insertions(+), 362 deletions(-)

diff --git a/po/sr.po b/po/sr.po
index b4c0b8c..bb5f1b9 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,12 +1,18 @@
-# salepetronije , 2012.
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# salepetronije , 2012
+# salepetronije , 2013
 msgid ""
 msgstr ""
-"Project-Id-Version: xfdesktop 4.6.0\n"
+"Project-Id-Version: Xfdesktop\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-20 08:21+\n"
-"PO-Revision-Date: 2012-06-20 08:32+0200\n"
+"POT-Creation-Date: 2013-07-02 22:50+0200\n"
+"PO-Revision-Date: 2013-07-08 11:40+\n"
 "Last-Translator: salepetronije \n"
-"Language-Team: српски \n"
+"Language-Team: Serbian 
(http://www.transifex.com/projects/p/xfce/language/sr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -19,12 +25,10 @@ msgstr ""
 msgid ""
 "%s\n"
 "Size: %dx%d"
-msgstr ""
-"%s\n"
-"Величина: %dx%d"
+msgstr "%s\nВеличина: %dx%d"
 
-#: ../settings/main.c:263 ../src/xfdesktop-special-file-icon.c:271
-#: ../src/xfdesktop-special-file-icon.c:434
+#: ../settings/main.c:263 ../src/xfdesktop-special-file-icon.c:272
+#: ../src/xfdesktop-special-file-icon.c:443
 msgid "Home"
 msgstr "Лична фасцикла"
 
@@ -101,230 +105,245 @@ msgid "Set desktop background and menu and icon 
behaviour"
 msgstr "Подеси позадину површи и понашање изборника и икона"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:1
-msgid "Add an image to the list"
-msgstr "Додајте слику на листу"
+msgid "Solid color"
+msgstr "Пуна боја"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:2
-msgid ""
-"Automatically select a different background from the current directory after "
-"a set number of minutes."
-msgstr ""
-"При приказу позадинске листе, одабери ову могућност да би се позадине мењале "
-"после задатог броја минута."
+msgid "Horizontal gradient"
+msgstr "Водоравни прелив"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:3
-msgid "Color:"
-msgstr "Боја:"
+msgid "Vertical gradient"
+msgstr "Усправни прелив"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:4
-msgid "Folder:"
-msgstr "Фасцикла:"
+msgid "Transparent"
+msgstr "Провидна"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:5
-msgid "Horizontal gradient"
-msgstr "Водоравни прелив"
+msgid "Folder:"
+msgstr "Фасцикла:"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:6
-msgid "Number of minutes before a different background is selected."
-msgstr "Број минута пре избора друге позадине."
+msgid "Add an image to the list"
+msgstr "Додајте слику на листу"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:7
-msgid "Select First Color"
-msgstr "Одабери прву боју"
+msgid "Specify how the image will be resized to fit the screen"
+msgstr "Одреди како ће слици бити промењена величина да би се уклопила на 
радну површ"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:8
-msgid "Select Second Color"
-msgstr "одабери другу боју"
+#: ../settings/xfdesktop-settings-ui.glade.h:4
+msgid "None"
+msgstr "Ништа"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:9
-msgid "Solid color"
-msgstr "Пуна боја"
+msgid "Centered"
+msgstr "По средини"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:10
-msgid "Specifies the \"right\" or \"bottom\" color of the gradient"
-msgstr "Одреди „десну“ или „доњу“ боју прелива"
+msgid "Tiled"
+msgstr "Поплочано"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:11
-msgid ""
-"Specifies the solid color, or the \"left\" or \"top\" color of the gradient"
-msgstr "Одабери пуну боју, или „леву“ или „горњу“ боју прелива"
+msgid "Stretched"
+msgstr "Развучено"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:12
-msgid "Specify how the image will be resized to fit the screen"
-msgstr ""
-"Одреди како ће слици бити промењена величина да би се уклопила на радну површ"
+msgid "Scaled"
+msgstr "Раширено"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:13
-msgid "Specify the style of the color drawn behind the backdrop image"
-msgstr "Одреди начин цртања боје иза позадинске слике"
+msgid "Zoomed"
+msgstr "Увећано"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:14
 msgid "St_yle:"
 msgstr "На_чин:"
 
 #: ../settings/xfdesktop-settings-

[Xfce4-commits] I18n: Update translation ca (93%).

2013-07-08 Thread Transifex
Updating branch refs/heads/master
 to afba608313e5f2bbb84a4733693c05a6944eb158 (commit)
   from 909abb5cc5ec045662f7955ecfc131f9221c49e0 (commit)

commit afba608313e5f2bbb84a4733693c05a6944eb158
Author: alavios 
Date:   Mon Jul 8 18:30:35 2013 +0200

I18n: Update translation ca (93%).

41 translated messages, 3 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/ca.po |  164 +-
 1 files changed, 55 insertions(+), 109 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index 53409e6..9aa1493 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -1,39 +1,37 @@
-# Catalan translations for tumbler package
-# Traduccions al català del paquet «tumbler».
-# Copyright (C) 2009 THE tumbler'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the tumbler package.
-#
-# Carles Muñoz Gorriz , 2009, 2011.
-# Harald Servat , 2009.
-#
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# alavios , 2013
+# carlesmu , 2009,2011
+# Harald Servat , 2009
 msgid ""
 msgstr ""
 "Project-Id-Version: Tumbler\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-12-18 09:00+\n"
-"PO-Revision-Date: 2011-12-18 14:04+0100\n"
-"Last-Translator: Carles Muñoz Gorriz \n"
-"Language-Team: Catalan \n"
-"Language: ca\n"
+"POT-Creation-Date: 2013-07-02 22:38+0200\n"
+"PO-Revision-Date: 2013-07-08 14:33+\n"
+"Last-Translator: alavios \n"
+"Language-Team: Catalan 
(http://www.transifex.com/projects/p/xfce/language/ca/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: ca\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Poedit-Language: Catalan\n"
-"X-Poedit-SourceCharset: utf-8\n"
 
 #: ../tumblerd/tumbler-cache-service.c:413
 #, c-format
 msgid "Another thumbnail cache service is already running"
 msgstr "Un altre servei de memòria cau de miniatures ja s'està executant"
 
-#: ../tumblerd/tumbler-group-scheduler.c:485
-#: ../tumblerd/tumbler-lifo-scheduler.c:421
+#: ../tumblerd/tumbler-group-scheduler.c:486
+#: ../tumblerd/tumbler-lifo-scheduler.c:422
 #, c-format
 msgid "No thumbnailer available for \"%s\""
 msgstr "No hi ha cap miniatura disponible per «%s»"
 
-#: ../tumblerd/tumbler-lifecycle-manager.c:207
+#: ../tumblerd/tumbler-lifecycle-manager.c:208
 msgid "The thumbnailer service is shutting down"
 msgstr "S'està tancant el servei de miniatures"
 
@@ -46,11 +44,11 @@ msgstr "Un altres sistema genèric de miniatures ja s'està 
executant"
 msgid "Unsupported thumbnail flavor requested"
 msgstr "La variant de la miniatura requerida no està suportada"
 
-#: ../tumblerd/tumbler-specialized-thumbnailer.c:461
+#: ../tumblerd/tumbler-specialized-thumbnailer.c:485
 msgid "Failed to call the specialized thumbnailer: timeout"
 msgstr "Ha fallat la crida al generador de miniatures: ha expirat el temps"
 
-#: ../tumblerd/tumbler-specialized-thumbnailer.c:470
+#: ../tumblerd/tumbler-specialized-thumbnailer.c:494
 #, c-format
 msgid "Failed to call the specialized thumbnailer: %s"
 msgstr "Ha fallat la crida al generador de miniatures: %s"
@@ -71,9 +69,7 @@ msgstr "Secció mal formada «%s» en el fitxer «%s»: %s"
 msgid ""
 "Malformed section \"%s\" in file \"%s\": Mismatch between section name and "
 "UriScheme/MimeType"
-msgstr ""
-"Secció mal formada «%s» en el fitxer «%s»: diferències entre el nom de la "
-"secció i el UriScheme/MimeType"
+msgstr "Secció mal formada «%s» en el fitxer «%s»: diferències entre el nom de 
la secció i el UriScheme/MimeType"
 
 #: ../tumblerd/tumbler-manager.c:908 ../tumblerd/tumbler-manager.c:922
 #: ../tumblerd/tumbler-manager.c:936
@@ -84,40 +80,43 @@ msgstr "Fitxer amb format erroni «%s»: %s"
 #: ../tumblerd/tumbler-manager.c:962
 #, c-format
 msgid "Failed to determine last modified time of \"%s\""
-msgstr ""
-"No s'ha pogut determinar quan ha succeït la darrera modificació de «%s»"
+msgstr "No s'ha pogut determinar quan ha succeït la darrera modificació de 
«%s»"
 
-#: ../tumblerd/tumbler-manager.c:1863
+#: ../tumblerd/tumbler-manager.c:1868
 #, c-format
 msgid "Another thumbnailer manager is already running"
 msgstr "Un altre gestor de miniatures ja s'està executant"
 
+#: ../tumblerd/main.c:249
+msgid "Couldn't change nice value of process."
+msgstr ""
+
 #. set the application name. Translators: Don't translate "Tumbler".
-#: ../tumblerd/main.c:83
+#: ../tumblerd/main.c:258
 msgid "Tumbler Thumbnailing Service"
 msgstr "Servei de miniatures Tumbler"
 
-#: ../tumblerd/main.c:98
+#: ../tumblerd/main.c:280
 #, c-format
 msgid "Failed to connect to the D-Bus session bus: %s"
 msgstr "No s'ha pogut connectar amb la sessió de bus D-Bus: %s"
 
-#: ../tumblerd/main.c:156
+#: ../tumblerd/main.c:363
 #, c-format
 msgid "Failed to load specialized thumbnailers into the registry: %s"
 msgstr "N

[Xfce4-commits] I18n: Update translation ca (100%).

2013-07-08 Thread Transifex
Updating branch refs/heads/master
 to 565d30256dca231ac5f8025dc53eeead7cdaa225 (commit)
   from c6164e95c1e3401e83a8711f59d02671a60032e8 (commit)

commit 565d30256dca231ac5f8025dc53eeead7cdaa225
Author: carlesmu 
Date:   Mon Jul 8 12:30:30 2013 +0200

I18n: Update translation ca (100%).

113 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/ca.po |  148 +++--
 1 files changed, 37 insertions(+), 111 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index 63e518e..a129ea0 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -1,32 +1,29 @@
-# Catalan translations for thunar-volman package
-# Traduccions al català del paquet «thunar-volman».
-# Copyright (C) 2008 THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the thunar-volman
-# package.
-# Carles Muñoz Gorriz , 2008, 2012.
-#
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# carlesmu , 2008,2012-2013
 msgid ""
 msgstr ""
-"Project-Id-Version: thunar-volman\n"
+"Project-Id-Version: Thunar-volman\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-01-15 15:30+\n"
-"PO-Revision-Date: 2012-01-15 18:11+0100\n"
-"Last-Translator: Carles Muñoz Gorriz \n"
-"Language-Team: Catalan\n"
-"Language: \n"
+"POT-Creation-Date: 2013-07-02 22:37+0200\n"
+"PO-Revision-Date: 2013-07-08 07:30+\n"
+"Last-Translator: carlesmu \n"
+"Language-Team: Catalan 
(http://www.transifex.com/projects/p/xfce/language/ca/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: ca\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Poedit-Language: Catalan\n"
-"X-Poedit-SourceCharset: utf-8\n"
 
 #: ../thunar-volman/main.c:59
 msgid "The syfs path of the newly added device"
 msgstr "El camí al dispositiu afegit recentment"
 
 #: ../thunar-volman/main.c:60
-#: ../thunar-volman-settings/thunar-volman-settings.desktop.in.in.h:1
+#: ../thunar-volman-settings/thunar-volman-settings.desktop.in.in.h:2
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:104
 msgid "Configure management of removable drives and media"
 msgstr "Configura la gestió dels dispositius i mitjans extraïbles"
@@ -40,21 +37,21 @@ msgstr "Mostra informació sobre la versió i surt"
 msgid "Thunar Volume Manager"
 msgstr "Gestor de volums de Thunar"
 
-#: ../thunar-volman/main.c:119
+#: ../thunar-volman/main.c:121
 msgid "All rights reserved."
 msgstr "Tots els drets reservats"
 
-#: ../thunar-volman/main.c:120
+#: ../thunar-volman/main.c:122
 #, c-format
 msgid "Please report bugs to <%s>."
 msgstr "Envieu els errors a <%s>."
 
-#: ../thunar-volman/main.c:174
+#: ../thunar-volman/main.c:176
 #, c-format
 msgid "There is no device with the sysfs path \"%s\""
 msgstr "No hi ha dispositiu en el camí \"%s\""
 
-#: ../thunar-volman/main.c:186
+#: ../thunar-volman/main.c:188
 #, c-format
 msgid "Must specify the sysfs path of new devices with --device-added"
 msgstr "Heu d'especificar el camí dels nous dispositius amb --device-added"
@@ -77,8 +74,7 @@ msgstr "Voleu importar les fotos o gestionar la música?"
 #: ../thunar-volman/tvm-block-device.c:378
 #: ../thunar-volman/tvm-block-device.c:425
 #: ../thunar-volman/tvm-block-device.c:507
-#: ../thunar-volman/tvm-block-device.c:829
-#: ../thunar-volman/tvm-run.c:192
+#: ../thunar-volman/tvm-block-device.c:829 ../thunar-volman/tvm-run.c:192
 #: ../thunar-volman/tvm-run.c:203
 msgid "Ig_nore"
 msgstr "Ig_nora"
@@ -102,7 +98,9 @@ msgid "A photo card has been detected"
 msgstr "S'ha detectat una tarjeta de fotografies."
 
 #: ../thunar-volman/tvm-block-device.c:275
-msgid "There are photos on the card. Would you like to add these photos to 
your album?"
+msgid ""
+"There are photos on the card. Would you like to add these photos to your "
+"album?"
 msgstr "Hi han fotos a la targeta, Voleu afegir-les al vostre àlbum?"
 
 #. prompt the user to execute the file
@@ -213,13 +211,13 @@ msgstr "_Reprodueix un CD"
 
 #: ../thunar-volman/tvm-block-device.c:919
 #, c-format
-msgid "Unknown block device type"
-msgstr "Tipus de dispositiu de blocs desconegut"
+msgid "Unknown block device type \"%s\""
+msgstr "Tipus de dispositiu de blocs «%s» desconegut"
 
 #: ../thunar-volman/tvm-device.c:139
 #, c-format
-msgid "Device type not supported"
-msgstr "Dispositiu no suportat"
+msgid "Device type \"%s\" not supported"
+msgstr "Tipus de dispositiu «%s» no compatible"
 
 #: ../thunar-volman/tvm-input-device.c:75
 msgid "Keyboard detected"
@@ -249,8 +247,8 @@ msgstr "S'ha detectat un ratolí"
 
 #: ../thunar-volman/tvm-input-device.c:141
 #, c-format
-msgid "Unsupported input device type"
-msgstr "Tipus de dispositiu d'entrada no suportat"
+msgid "Unsupported input device type \"%s\""
+msgstr "Tipus de dispositiu d'entrada «%s» no compatible"
 
 #: ../thunar-volman

[Xfce4-commits] I18n: Update translation eu (71%).

2013-07-08 Thread Transifex
Updating branch refs/heads/master
 to 955b2cc0ca4767559fa4fe2f358e41d3c275d007 (commit)
   from c04324a1cc138ac52c411c59ce16c6d5fc3ad4e6 (commit)

commit 955b2cc0ca4767559fa4fe2f358e41d3c275d007
Author: Piarres Beobide 
Date:   Mon Jul 8 12:30:57 2013 +0200

I18n: Update translation eu (71%).

176 translated messages, 71 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/eu.po |   64 -
 1 files changed, 29 insertions(+), 35 deletions(-)

diff --git a/po/eu.po b/po/eu.po
index 2d4f40b..35b128f 100644
--- a/po/eu.po
+++ b/po/eu.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.
-# Piarres Beobide , 2013.
+# 
+# Translators:
+# Piarres Beobide , 2013
 msgid ""
 msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-06-27 05:48+\n"
-"PO-Revision-Date: 2013-05-20 12:27+0200\n"
+"POT-Creation-Date: 2013-07-03 20:24+0200\n"
+"PO-Revision-Date: 2013-07-07 21:35+\n"
 "Last-Translator: Piarres Beobide \n"
-"Language-Team: Euskara \n"
+"Language-Team: Basque 
(http://www.transifex.com/projects/p/xfce/language/eu/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: eu\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Virtaal 0.7.0\n"
 
 #: ../mousepad/main.c:53
 msgid "Do not register with the D-BUS session message bus"
@@ -118,8 +119,7 @@ msgstr "Dokumnetua ez baduzu gordetzen, aldaketa guztiak 
galduko dira."
 #: ../mousepad/mousepad-dialogs.c:385
 msgid ""
 "The document has been externally modified. Do you want to continue saving?"
-msgstr ""
-"Dokumentua kanpoaldetik eraldatua izan da. Gordetzen jarraitu nahi al duzu?"
+msgstr "Dokumentua kanpoaldetik eraldatua izan da. Gordetzen jarraitu nahi al 
duzu?"
 
 #: ../mousepad/mousepad-dialogs.c:386
 msgid "Externally Modified"
@@ -127,8 +127,7 @@ msgstr "Kanpotik eraldatua"
 
 #: ../mousepad/mousepad-dialogs.c:388
 msgid "If you save the document, all of the external changes will be lost."
-msgstr ""
-"Dokumnetua gordetzen baduzu, kanpotik egindako aldaketa guztiak galduko dira."
+msgstr "Dokumnetua gordetzen baduzu, kanpotik egindako aldaketa guztiak 
galduko dira."
 
 #: ../mousepad/mousepad-dialogs.c:416
 msgid "Do you want to save your changes before reloading?"
@@ -289,7 +288,6 @@ msgstr "Japoniarra"
 
 #: ../mousepad/mousepad-encoding.c:102 ../mousepad/mousepad-encoding.c:103
 #: ../mousepad/mousepad-encoding.c:104 ../mousepad/mousepad-encoding.c:105
-#, fuzzy
 msgid "Korean"
 msgstr "Korearra"
 
@@ -306,7 +304,7 @@ msgstr ""
 #: ../mousepad/mousepad-file.c:916
 #, c-format
 msgid "Failed to read the status of \"%s\""
-msgstr ""
+msgstr "Huts \"%s\"-ren egoera irakurtzerakoan."
 
 #. set a custom tab label
 #: ../mousepad/mousepad-print.c:125
@@ -492,12 +490,8 @@ msgstr "Lerroa: %d Zutabea: %d"
 #. show warning to the user
 #: ../mousepad/mousepad-util.c:572
 #, c-format
-msgid ""
-"Unable to create base directory \"%s\". Saving to file \"%s\" will be "
-"aborted."
-msgstr ""
-"Ezin da \"%s\" oinarri direktorioa sortu. \"%s\" fitxategiaren gordetzea "
-"utzi egin da."
+msgid "Unable to create base directory \"%s\". Saving to file \"%s\" will be 
aborted."
+msgstr "Ezin da \"%s\" oinarri direktorioa sortu. \"%s\" fitxategiaren 
gordetzea utzi egin da."
 
 #. print error
 #: ../mousepad/mousepad-util.c:618
@@ -719,11 +713,11 @@ msgstr ""
 
 #: ../mousepad/mousepad-window.c:440
 msgid "_Text"
-msgstr ""
+msgstr "_Testua"
 
 #: ../mousepad/mousepad-window.c:441
 msgid "_Convert"
-msgstr ""
+msgstr "_Bihurtu"
 
 #: ../mousepad/mousepad-window.c:442
 msgid "to _Uppercase"
@@ -796,27 +790,27 @@ msgstr ""
 
 #: ../mousepad/mousepad-window.c:451
 msgid "Line _Up"
-msgstr ""
+msgstr "Lerroa _gora"
 
 #: ../mousepad/mousepad-window.c:451
 msgid "Move the selection one line up"
-msgstr ""
+msgstr "Mugitu hautapena lerro bat gorantz"
 
 #: ../mousepad/mousepad-window.c:452
 msgid "Line _Down"
-msgstr ""
+msgstr "Lerroa _behera"
 
 #: ../mousepad/mousepad-window.c:452
 msgid "Move the selection one line down"
-msgstr ""
+msgstr "Mugitu hautapena lerro bat beherantz"
 
 #: ../mousepad/mousepad-window.c:453
 msgid "D_uplicate Line / Selection"
-msgstr ""
+msgstr "Bikoizt_u lerro / hautapena"
 
 #: ../mousepad/mousepad-window.c:453
 msgid "Duplicate the current line or selection"
-msgstr ""
+msgstr "Bikoiztu uneko lerro edo hautapena"
 
 #: ../mousepad/mousepad-window.c:454
 msgid "_Increase Indent"
@@ -978,48 +972,48 @@ msgstr ""
 
 #: ../mousepad/mousepad-window.c:1294
 msgid "Read Only"
-msgstr ""
+msgstr "Irakurtzeko soilik"
 
 #: ../mousepad/mousepad-window.c:1354 ../mousepad/mousepad-window.c:3218
 #: ../mousepad/mousepad-window.c:3299
 msgid "None"
-

[Xfce4-commits] I18n: Update translation eu (100%).

2013-07-08 Thread Transifex
Updating branch refs/heads/master
 to 207fed772c6c8c78fcd30564b1a618364e66fc5d (commit)
   from ff45cf0eb2c235b25de699b8eaec961a99f61c54 (commit)

commit 207fed772c6c8c78fcd30564b1a618364e66fc5d
Author: Piarres Beobide 
Date:   Mon Jul 8 12:31:07 2013 +0200

I18n: Update translation eu (100%).

291 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/eu.po |  232 +-
 1 files changed, 78 insertions(+), 154 deletions(-)

diff --git a/po/eu.po b/po/eu.po
index a3265b1..4a9c35a 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -1,60 +1,56 @@
-# translation of xfburn.master.po to Euskara
-# Basque translations for xfburn package.
-# Copyright (C) 2005-2006 Jean-François Wauthy.
-# This file is distributed under the same license as the xfburn package.
-#
-# Piarres Beobide , 2005, 2006, 2007, 2008, 2009.
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# Piarres Beobide , 2005-2009,2013
 msgid ""
 msgstr ""
-"Project-Id-Version: xfburn.master\n"
+"Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-19 09:46+0100\n"
-"PO-Revision-Date: 2009-08-18 09:02+0200\n"
+"POT-Creation-Date: 2013-07-03 20:34+0200\n"
+"PO-Revision-Date: 2013-07-07 21:32+\n"
 "Last-Translator: Piarres Beobide \n"
-"Language-Team: Euskara \n"
-"Language: eu\n"
+"Language-Team: Basque 
(http://www.transifex.com/projects/p/xfce/language/eu/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: eu\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: KBabel 1.11.4\n"
 
 #: ../xfburn/xfburn-global.h:28
 msgid "Capacity:"
-msgstr ""
+msgstr "Edukiera:"
 
 #: ../xfburn/xfburn-global.h:29
 msgid "addr:"
-msgstr ""
+msgstr "helb:"
 
 #: ../xfburn/xfburn-global.h:30
 msgid "Time total:"
-msgstr ""
+msgstr "Denbora guztira:"
 
 #: ../xfburn/xfburn-global.h:32
-#, fuzzy
 msgid "length"
-msgstr "Luzera"
+msgstr "luzera"
 
 #: ../xfburn/xfburn-global.h:33 ../xfburn/xfburn-copy-cd-progress-dialog.c:93
 msgid "Flushing cache..."
 msgstr "Katxea garbitzen..."
 
 #: ../xfburn/xfburn-global.h:34
-#, fuzzy
 msgid "Please insert a recordable disc and hit enter"
 msgstr "Mesedez disko grabagarri bat sartu."
 
 #: ../xfburn/xfburn-global.h:35
 msgid "Cannot determine disc status - hit enter to try again."
-msgstr ""
+msgstr "Ezin da disko egoera zehaztu - enter sakatu berriz saiatzeko."
 
 #: ../xfburn/xfburn-global.h:36
 msgid "CD copying finished successfully."
-msgstr ""
+msgstr "CD kopiak behar bezala amaitu du."
 
 #: ../xfburn/xfburn-global.h:42
-#, fuzzy
 msgid "Data composition"
 msgstr "Datu konposizioa"
 
@@ -133,7 +129,8 @@ msgstr "Diskoa a_tera"
 msgid "_Blank"
 msgstr "_Hutsa"
 
-#. blanking can only be performed on blank discs, format and deformat are 
allowed to be blank ones
+#. blanking can only be performed on blank discs, format and deformat are
+#. allowed to be blank ones
 #: ../xfburn/xfburn-blank-dialog.c:356
 msgid "The inserted disc is already blank."
 msgstr "Sartutako diskoa dagoeneko zurian dago."
@@ -163,7 +160,7 @@ msgid "Done"
 msgstr "Eginda"
 
 #: ../xfburn/xfburn-blank-dialog.c:444 ../xfburn/xfburn-perform-burn.c:372
-#: ../xfburn/xfburn-progress-dialog.c:637
+#: ../xfburn/xfburn-progress-dialog.c:649
 msgid "Failure"
 msgstr "Huts"
 
@@ -274,8 +271,8 @@ msgid "ISO images"
 msgstr "ISO irudiak"
 
 #: ../xfburn/xfburn-burn-image-dialog.c:226
-msgid "_Quit after successful completion"
-msgstr "_Itxi behar bezala osatzean"
+msgid "_Quit after success"
+msgstr "It_xi ondo osatzean"
 
 #: ../xfburn/xfburn-burn-image-dialog.c:236
 msgid "_Burn image"
@@ -304,23 +301,18 @@ msgstr "Irudia grabatzen..."
 
 #: ../xfburn/xfburn-burn-image-dialog.c:465
 msgid ""
-"Please "
-"select an image to burn"
-msgstr ""
-"Mesedez hautatu irudi bat grabatzeko"
+"Please"
+" select an image to burn"
+msgstr "Mesedez hautatu irudi bat grabatzeko"
 
 #: ../xfburn/xfburn-burn-image-dialog.c:505
 msgid ""
 "Cannot append data to multisession disc in this write mode (use TAO instead)"
-msgstr ""
-"Ezin da daturik erantsi saio anitzeko diskora idazketa modu honetan (TAO "
-"erabili honen ordez)"
+msgstr "Ezin da daturik erantsi saio anitzeko diskora idazketa modu honetan 
(TAO erabili honen ordez)"
 
 #: ../xfburn/xfburn-burn-image-dialog.c:509
 msgid "Closed disc with data detected. Need blank or appendable disc"
-msgstr ""
-"Datuak dituen disko itxia atzemana. Disko huts edo eransgarri bat behar da"
+msgstr "Datuak dituen disko itxia atzemana. Disko huts edo eransgarri bat 
behar da"
 
 #: ../xfburn/xfburn-burn-image-dialog.c:511
 msgid "No disc detected in drive"
@@ -342,9 +334,7 @@ msgstr "Ezin da irudi tamaina eskuratu"
 msgid ""
 "Make sure you selected a valid file and you have the proper permissions t