[Xfce4-commits] xfwm4:ochosi/tabwin Add some fancy cairo-drawing if the compositor is in use FIXME: add theming possibilities for roundness, colors, border-width and alpha

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

commit 0e363f4329d4bce56788b94274239562d255a459
Author: Simon Steinbeiss simon.steinbe...@elfenbeinturm.at
Date:   Thu Jul 11 10:53:33 2013 +0200

Add some fancy cairo-drawing if the compositor is in use
FIXME: add theming possibilities for roundness, colors, border-width and 
alpha

 src/tabwin.c |   50 ++
 1 files changed, 50 insertions(+), 0 deletions(-)

diff --git a/src/tabwin.c b/src/tabwin.c
index 3111fb0..ad949df 100644
--- a/src/tabwin.c
+++ b/src/tabwin.c
@@ -96,6 +96,44 @@ get_color (GtkWidget *win, GtkStateType state_type)
 }
 
 static gboolean
+tabwin_expose (GtkWidget *tbw, GdkEventExpose *event, gpointer data)
+{
+GtkWindow *window;
+GdkScreen *screen;
+cairo_t *cr;
+gint radius = 10.0;
+double degrees = 3.14 / 180.0;
+double width = tbw-allocation.width;
+double height = tbw-allocation.height;
+
+window = GTK_WINDOW(tbw);
+screen = gtk_window_get_screen(window);
+
+cr = gdk_cairo_create (tbw-window);
+cairo_set_operator(cr, CAIRO_OPERATOR_CLEAR);
+gdk_cairo_region(cr, event-region);
+cairo_set_source_rgba(cr, 1.0, 1.0, 1.0, 0.0);
+cairo_fill_preserve(cr);
+cairo_clip(cr);
+cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
+
+//Draw a filled rounded rectangle with an outline
+cairo_set_line_width (cr, 1.0);
+cairo_arc (cr, width - radius - 0.5, radius + 0.5, radius, -90 * degrees, 
0 * degrees);
+cairo_arc (cr, width - radius - 0.5, height - radius - 0.5, radius, 0 * 
degrees, 90 * degrees);
+cairo_arc (cr, radius + 0.5, height - radius - 0.5, radius, 90 * degrees, 
180 * degrees);
+cairo_arc (cr, radius + 0.5, radius + 0.5, radius, 180 * degrees, 270 * 
degrees);
+cairo_close_path(cr);
+cairo_set_source_rgba (cr, 0.0, 0.0, 0.0, 0.8);
+cairo_fill_preserve (cr);
+cairo_set_source_rgba (cr, 0.95, 0.95, 0.95, 0.3);
+cairo_stroke (cr);
+
+cairo_destroy (cr);
+return FALSE;
+}
+
+static gboolean
 paint_selected (GtkWidget *w, GdkEventExpose *event, gpointer data)
 {
 g_return_val_if_fail (GTK_IS_WIDGET(w), FALSE);
@@ -351,6 +389,7 @@ static TabwinWidget *
 tabwinCreateWidget (Tabwin *tabwin, ScreenInfo *screen_info, gint monitor_num)
 {
 TabwinWidget *tbw;
+GdkScreen *screen;
 GtkWidget *vbox;
 GtkWidget *windowlist;
 GdkRectangle monitor;
@@ -370,8 +409,19 @@ tabwinCreateWidget (Tabwin *tabwin, ScreenInfo 
*screen_info, gint monitor_num)
 gtk_widget_style_get (GTK_WIDGET (tbw), border-width, border_width, 
NULL);
 gtk_window_set_screen (GTK_WINDOW (tbw), screen_info-gscr);
 gtk_widget_set_name (GTK_WIDGET (tbw), xfwm4-tabwin);
+
+/* Only do the rounded corners and transparency if a compositor is in use 
*/
+screen = gtk_widget_get_screen(GTK_WIDGET(tbw));
+if(gdk_screen_is_composited(screen)) {
+g_signal_connect (tbw, expose-event, GTK_SIGNAL_FUNC 
(tabwin_expose), (gpointer) tbw);
+GdkColormap *cmap = gdk_screen_get_rgba_colormap(screen);
+if(cmap)
+gtk_widget_set_colormap(GTK_WIDGET(tbw), cmap);
+}
+
 gtk_widget_realize (GTK_WIDGET (tbw));
 gtk_container_set_border_width (GTK_CONTAINER (tbw), 6);
+gtk_widget_set_app_paintable(GTK_WIDGET(tbw), TRUE);
 gtk_window_set_position (GTK_WINDOW (tbw), GTK_WIN_POS_NONE);
 gdk_screen_get_monitor_geometry (screen_info-gscr, tbw-monitor_num, 
monitor);
 gtk_window_move (GTK_WINDOW(tbw), monitor.x + monitor.width / 2,
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-taskmanager:master I18n: Update translation pl (100%).

2013-07-11 Thread Transifex
Updating branch refs/heads/master
 to 9ff6d3f69eb9118cee36093af212d0b3f2a0e838 (commit)
   from c7a14078f9c966215ec0aed16dca268ccde12247 (commit)

commit 9ff6d3f69eb9118cee36093af212d0b3f2a0e838
Author: Piotr Sokół pso...@jabster.pl
Date:   Thu Jul 11 12:31:27 2013 +0200

I18n: Update translation pl (100%).

75 translated messages.

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

 po/pl.po |  173 +++---
 1 files changed, 52 insertions(+), 121 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index 75f929d..0a84b71 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -1,29 +1,27 @@
-# Polish translations for xfce4-taskmanager package.
-# Copyright (C) 2005-2006 Johannes Zellner.
-# This file is distributed under the same license as the xfce4-taskmanager 
package.
-# Piotr Maliński ad...@rk.edu.pl, 2006.
-# Tomasz Chudyk chu...@gmail.com, 2010.
-# Piotr Sokół pso...@jabster.pl, 2009, 2011.
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
 # 
+# Translators:
+# elder elderl...@riseup.net, 2013
+# Piotr Maliński ad...@rk.edu.pl, 2006
+# Piotr Sokół pso...@jabster.pl, 2009,2011,2013
+# Tomasz Chudyk chu...@gmail.com, 2010
 msgid 
 msgstr 
-Project-Id-Version: xfce4-taskmanager 1.0.0\n
+Project-Id-Version: Xfce Apps\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2012-04-16 06:39+\n
-PO-Revision-Date: 2011-02-02 12:32+0100\n
+POT-Creation-Date: 2013-07-03 20:41+0200\n
+PO-Revision-Date: 2013-07-11 09:51+\n
 Last-Translator: Piotr Sokół pso...@jabster.pl\n
-Language-Team: Polish \n
+Language-Team: Polish xfce-i18n...@xfce.org\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
 Language: pl\n
-Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10=2  n%10=4  
(n%10010 || n%100=20)) ? 1 : 2));\n
+Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10=2  n%10=4  (n%10010 
|| n%100=20) ? 1 : 2);\n
 
-#: ../xfce4-taskmanager.desktop.in.h:1 ../src/process-window.c:309
-msgid Easy to use task manager
-msgstr Zarządza uruchomionymi procesami
-
-#: ../xfce4-taskmanager.desktop.in.h:2 ../src/exec-tool-button.c:89
+#: ../xfce4-taskmanager.desktop.in.h:1 ../src/exec-tool-button.c:89
 #: ../src/exec-tool-button.c:134 ../src/main.c:156
 #: ../src/process-tree-view.c:355 ../src/process-tree-view.c:370
 #: ../src/process-tree-view.c:398 ../src/process-window.c:304
@@ -31,6 +29,10 @@ msgstr Zarządza uruchomionymi procesami
 msgid Task Manager
 msgstr Menedżer zadań
 
+#: ../xfce4-taskmanager.desktop.in.h:2 ../src/process-window.c:309
+msgid Easy to use task manager
+msgstr Zarządza uruchomionymi procesami
+
 #: ../src/exec-tool-button.c:87 ../src/exec-tool-button.c:131
 msgid Execution error
 msgstr Błąd uruchamiania
@@ -67,11 +69,7 @@ msgid 
 bCPU:/b %.0f%%\n
 bMemory:/b %.0f%%\n
 bSwap:/b %.0f%%
-msgstr 
-bIlość procesów:/b %u\n
-bObciążenie CPU:/b %.0f%%\n
-bUżycie pamięci:/b %.0f%%\n
-bUżycie pamięci wymiany:/b %.0f%%
+msgstr bIlość procesów:/b %u\nbObciążenie CPU:/b %.0f%%\nbUżycie 
pamięci:/b %.0f%%\nbUżycie pamięci wymiany:/b %.0f%%
 
 #: ../src/main.c:108
 #, c-format
@@ -80,11 +78,7 @@ msgid 
 CPU: %.0f%%\n
 Memory: %.0f%%\n
 Swap: %.0f%%
-msgstr 
-Ilość procesów: %u\n
-Obciążenie CPU: %.0f%%\n
-Użycie pamięci: %.0f%%\n
-Użycie pamięci wymiany: %.0f%%
+msgstr Ilość procesów: %u\nObciążenie CPU: %.0f%%\nUżycie pamięci: 
%.0f%%\nUżycie pamięci wymiany: %.0f%%
 
 #: ../src/process-statusbar.c:148 ../src/process-window.c:374
 #, c-format
@@ -164,11 +158,9 @@ msgstr Błąd wysyłania sygnału
 #: ../src/process-tree-view.c:368
 #, c-format
 msgid 
-An error was encountered by sending a signal to the PID %d. It is likely you 
-don't have the required privileges.
-msgstr 
-Wystąpił błąd podczas wysyłania sygnału do procesu o identyfikatorze %d. 
-Proszę sprawdzić czy bieżący użytkownik posiada odpowiednie uprawnienia.
+An error was encountered by sending a signal to the PID %d. It is likely you
+ don't have the required privileges.
+msgstr Wystąpił błąd podczas wysyłania sygnału do procesu o identyfikatorze 
%d. Proszę sprawdzić czy bieżący użytkownik posiada odpowiednie uprawnienia.
 
 #: ../src/process-tree-view.c:395
 msgid Error setting priority
@@ -179,9 +171,7 @@ msgstr Błąd ustawiania priorytetu
 msgid 
 An error was encountered by setting a priority to the PID %d. It is likely 
 you don't have the required privileges.
-msgstr 
-Wystąpił błąd podczas zmiany priorytetu procesu o identyfikatorze %d. Proszę 
-sprawdzić czy bieżący użytkownik posiada odpowiednie uprawnienia.
+msgstr Wystąpił błąd podczas zmiany priorytetu procesu o identyfikatorze %d. 
Proszę sprawdzić czy bieżący użytkownik posiada odpowiednie uprawnienia.
 
 #: ../src/process-tree-view.c:412
 msgid Terminate
@@ -225,16 +215,11 @@ msgstr Priorytet
 
 #: ../src/process-window.c:312
 msgid translator-credits
-msgstr 
-Piotr 

[Xfce4-commits] xfce4-terminal:master I18n: Update translation ug (73%).

2013-07-11 Thread Transifex
Updating branch refs/heads/master
 to b8db5cbbef446e859f6663dbbedf224aa5066b51 (commit)
   from 5eb45e757de8069718326d446a3f112852dd4c80 (commit)

commit b8db5cbbef446e859f6663dbbedf224aa5066b51
Author: Anonymous nore...@xfce.org
Date:   Thu Jul 11 12:31:29 2013 +0200

I18n: Update translation ug (73%).

207 translated messages, 75 untranslated messages.

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

 po/ug.po |  553 --
 1 files changed, 106 insertions(+), 447 deletions(-)

diff --git a/po/ug.po b/po/ug.po
index 37e9413..d3be24b 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -1,24 +1,25 @@
-# Uyghur translation for terminal.
+# SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# Gheyret Kenji ghey...@gmail.com, YEAR.
-#
+# 
+# Translators:
 msgid 
 msgstr 
-Project-Id-Version: terminal\n
+Project-Id-Version: Xfce Apps\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2013-01-03 19:33+0100\n
-PO-Revision-Date: 2011-11-09 16:10+0900\n
-Last-Translator: Gheyret Kenji ghey...@gmail.com\n
-Language-Team: Uyghur Computer Science Association u...@yahoogroups.com\n
-Language: \n
+POT-Creation-Date: 2013-07-03 20:42+0200\n
+PO-Revision-Date: 2013-07-11 06:41+\n
+Last-Translator: kawichi\n
+Language-Team: Uighur 
(http://www.transifex.com/projects/p/xfce/language/ug/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: ug\n
+Plural-Forms: nplurals=1; plural=0;\n
 
 #: ../colorschemes/black-on-white.theme.in.h:1
 msgid Black on White
-msgstr 
+msgstr ئاقنىڭ ئۈستىدە قارا
 
 #: ../colorschemes/dark-pastels.theme.in.h:1
 msgid Dark Pastels
@@ -26,7 +27,7 @@ msgstr 
 
 #: ../colorschemes/green-on-black.theme.in.h:1
 msgid Green on Black
-msgstr 
+msgstr قارىنىڭ ئۈستىدە يېشىل
 
 #: ../colorschemes/solarized-dark.theme.in.h:1
 msgid Solarized
@@ -38,12 +39,11 @@ msgstr 
 
 #: ../colorschemes/white-on-black.theme.in.h:1
 msgid White on Black
-msgstr 
+msgstr قارىنىڭ ئۈستىدە ئاق
 
 #: ../colorschemes/xterm.theme.in.h:1
-#, fuzzy
 msgid XTerm
-msgstr تېرمىنال
+msgstr XTerm
 
 #: ../terminal/main.c:104
 msgid Usage:
@@ -114,14 +114,11 @@ msgstr سىنبەلگە
 #: ../terminal/main.c:147
 #, c-format
 msgid See the %s man page for full explanation of the options above.
-msgstr 
-يۇقىرىقى تاللانمىلار ھەققىدىكى تېخىمۇ كۆپ ئۇچۇرلارنى %s نىڭ man بېتىدىن 
-كۆرۈڭ.
+msgstr يۇقىرىقى تاللانمىلار ھەققىدىكى تېخىمۇ كۆپ ئۇچۇرلارنى %s نىڭ man 
بېتىدىن كۆرۈڭ.
 
 #: ../terminal/main.c:180 ../xfce4-terminal.desktop.in.h:1
-#, fuzzy
 msgid Xfce Terminal
-msgstr تېرمىنال ئاچ
+msgstr Xfce تېرمىنالى
 
 #: ../terminal/main.c:196
 msgid The Xfce development team. All rights reserved.
@@ -140,12 +137,12 @@ msgstr ۋە Nick Schermer n...@xfce.org.
 msgid Please report bugs to %s.
 msgstr كەمتۈكنى %s غا دوكلات قىلىڭ.
 
-#: ../terminal/main.c:302
+#: ../terminal/main.c:304
 #, c-format
 msgid Unable to register terminal service: %s\n
 msgstr تېرمىنال مۇلازىمىتىنى خەتلەتكىلى بولمىدى: %s\n
 
-#: ../terminal/terminal-app.c:694
+#: ../terminal/terminal-app.c:738
 #, c-format
 msgid Invalid geometry string \%s\\n
 msgstr گېئومېتىرىيە ھەرپ تىزمىسى «%s» ئىناۋەتسىز\n
@@ -156,11 +153,11 @@ msgstr 
 
 #: ../terminal/terminal-encoding-action.c:71
 msgid Central European
-msgstr 
+msgstr ئوتتۇرا ياۋروپا
 
 #: ../terminal/terminal-encoding-action.c:72
 msgid Baltic
-msgstr 
+msgstr بالتىق
 
 #: ../terminal/terminal-encoding-action.c:73
 msgid South-Eastern Europe
@@ -168,55 +165,55 @@ msgstr 
 
 #: ../terminal/terminal-encoding-action.c:74
 msgid Turkish
-msgstr 
+msgstr تۈركچە
 
 #: ../terminal/terminal-encoding-action.c:75
 msgid Cyrillic
-msgstr 
+msgstr سلاۋيانچە
 
 #: ../terminal/terminal-encoding-action.c:76
 msgid Chinese Traditional
-msgstr 
+msgstr مۇرەككەپ خەنزۇچە
 
 #: ../terminal/terminal-encoding-action.c:77
 msgid Chinese Simplified
-msgstr 
+msgstr ئاددىيلاشتۇرۇلغان خەنزۇچە
 
 #: ../terminal/terminal-encoding-action.c:78
 msgid Korean
-msgstr 
+msgstr كورېيەچە
 
 #: ../terminal/terminal-encoding-action.c:79
 msgid Japanese
-msgstr 
+msgstr ياپونچە
 
 #: ../terminal/terminal-encoding-action.c:80
 msgid Greek
-msgstr 
+msgstr گىرېكچە
 
 #: ../terminal/terminal-encoding-action.c:81
 msgid Arabic
-msgstr 
+msgstr ئەرەبچە
 
 #: ../terminal/terminal-encoding-action.c:82
 msgid Hebrew
-msgstr 
+msgstr ئىبرانىچە
 
 #: ../terminal/terminal-encoding-action.c:83
 msgid Thai
-msgstr 
+msgstr تايلاندچە
 
 #: ../terminal/terminal-encoding-action.c:84
 msgid Vietnamese
-msgstr 
+msgstr ۋىيېتنامچە
 
 #: ../terminal/terminal-encoding-action.c:85
 msgid Unicode
-msgstr 
+msgstr يۇنىكود
 
 #: ../terminal/terminal-encoding-action.c:86
 msgid Other
-msgstr 
+msgstr باشقىلار
 
 #. action to reset to the default
 #: ../terminal/terminal-encoding-action.c:254
@@ -225,11 +222,11 @@ msgstr 
 msgid Default (%s)
 msgstr 
 
-#: 

[Xfce4-commits] tumbler:master I18n: Update translation ug (100%).

2013-07-11 Thread Transifex
Updating branch refs/heads/master
 to 571cf02d00946f27eaba8b4fdcaaaeeb54ba0477 (commit)
   from 31a94ce2d823710841a8168c4828bb1268492119 (commit)

commit 571cf02d00946f27eaba8b4fdcaaaeeb54ba0477
Author: Anonymous nore...@xfce.org
Date:   Thu Jul 11 12:30:44 2013 +0200

I18n: Update translation ug (100%).

44 translated messages.

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

 po/ug.po |  106 +++---
 1 files changed, 12 insertions(+), 94 deletions(-)

diff --git a/po/ug.po b/po/ug.po
index 6203703..12e702e 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -1,20 +1,21 @@
-# Uyghur translation for tumbler.
+# SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# Gheyret Kenji ghey...@gmail.com, YEAR.
 # 
+# Translators:
 msgid 
 msgstr 
-Project-Id-Version: tumbler\n
+Project-Id-Version: Tumbler\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2013-06-05 04:39+\n
-PO-Revision-Date: 2011-11-09 16:10+0900\n
-Last-Translator: Gheyret Kenji ghey...@gmail.com\n
-Language-Team: Uyghur Computer Science Association u...@yahoogroups.com\n
+POT-Creation-Date: 2013-07-02 22:38+0200\n
+PO-Revision-Date: 2013-07-11 06:29+\n
+Last-Translator: kawichi\n
+Language-Team: Uighur 
(http://www.transifex.com/projects/p/xfce/language/ug/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: \n
+Language: ug\n
+Plural-Forms: nplurals=1; plural=0;\n
 
 #: ../tumblerd/tumbler-cache-service.c:413
 #, c-format
@@ -65,9 +66,7 @@ msgstr ھۆججەت «%2$s» دىكى بۆلەك «%1$s» نىڭ فورماتى
 msgid 
 Malformed section \%s\ in file \%s\: Mismatch between section name and 
 UriScheme/MimeType
-msgstr 
-ھۆججەت «%2$s» دىكى بۆلەك «%1$s» نىڭ فورماتى توغرا ئەمەس: بۆلەك ئاتى بىلەن 
-UriScheme/MimeType ماسلاشمىدى
+msgstr ھۆججەت «%2$s» دىكى بۆلەك «%1$s» نىڭ فورماتى توغرا ئەمەس: بۆلەك ئاتى 
بىلەن UriScheme/MimeType ماسلاشمىدى
 
 #: ../tumblerd/tumbler-manager.c:908 ../tumblerd/tumbler-manager.c:922
 #: ../tumblerd/tumbler-manager.c:936
@@ -102,8 +101,7 @@ msgstr D-Bus ئەڭگىمە باش لىنىيىسىگە باشلىنىش مەغ
 #: ../tumblerd/main.c:363
 #, c-format
 msgid Failed to load specialized thumbnailers into the registry: %s
-msgstr 
-مەخسۇسلاشتۇرۇلغان كىچىك سۈرەت ياسىغۇچنى رويخەتكە ئوقۇش مەغلۇپ بولدى: %s
+msgstr مەخسۇسلاشتۇرۇلغان كىچىك سۈرەت ياسىغۇچنى رويخەتكە ئوقۇش مەغلۇپ بولدى: 
%s
 
 #: ../tumblerd/main.c:375
 #, c-format
@@ -185,9 +183,7 @@ msgstr مېتا سانلىق-مەلۇماتنى «%s» دىن ئوقۇش مەغ
 msgid 
 Invalid API key, you must be granted a valid key. The Movie DB backend will 
 be disabled.
-msgstr 
-API ئاچقۇچى ئىناۋەتسىز، سىز ئاچقۇچنىڭ توغرا بولۇشىغا كاپالەتلىك قىلىشىڭىز 
-كېرەك. كىنو ساندىنى(DB) نىڭ ئارقا ئۇچى ئىناۋەتسىز قىلىنىدۇ.
+msgstr API ئاچقۇچى ئىناۋەتسىز، سىز ئاچقۇچنىڭ توغرا بولۇشىغا كاپالەتلىك 
قىلىشىڭىز كېرەك. كىنو ساندىنى(DB) نىڭ ئارقا ئۇچى ئىناۋەتسىز قىلىنىدۇ.
 
 #: ../plugins/cover-thumbnailer/cover-thumbnailer.c:634
 msgid No poster key found in metadata
@@ -254,81 +250,3 @@ msgstr يەرلىك ھۆججەتنىلا قوللايدۇ.
 #, c-format
 msgid Could not save thumbnail to \%s\
 msgstr كىچىك سۈرەتنى «%s» غا ساقلىغىلى بولمىدى.
-
-#~ msgid Initializing the Tumbler GStreamer Thumbnailer plugin
-#~ msgstr 
-#~ كىچىك سۈرەت ياسىغۇچ (Tumbler GStreamer Thumbnailer) قىستۇرمىسىنى 
-#~ دەسلەپلەشتۈرۈۋاتىدۇ
-
-#~ msgid Shutting down the Tumbler GStreamer Thumbnailer plugin
-#~ msgstr 
-#~ كىچىك سۈرەت ياسىغۇچ (Tumbler GStreamer Thumbnailer) قىستۇرمىسىنى 
-#~ توختىتىۋاتىدۇ
-
-#~ msgid Initializing the Tumbler Pixbuf Thumbnailer plugin
-#~ msgstr 
-#~ كىچىك سۈرەت ياسىغۇچ (Tumbler Pixbuf Thumbnailer) قىستۇرمىسىنى 
-#~ دەسلەپلەشتۈرۈۋاتىدۇ
-
-#~ msgid Shutting down the Tumbler Pixbuf Thumbnailer plugin
-#~ msgstr 
-#~ كىچىك سۈرەت ياسىغۇچ (Tumbler Pixbuf Thumbnailer) قىستۇرمىسىنى 
-#~ توختىتىۋاتىدۇ
-
-#~ msgid Initializing the Tumbler Font Thumbnailer plugin
-#~ msgstr 
-#~ كىچىك سۈرەت ياسىغۇچ (Tumbler Font Thumbnailer) قىستۇرمىسىنى 
-#~ دەسلەپلەشتۈرۈۋاتىدۇ
-
-#~ msgid Shutting down the Tumbler Font Thumbnailer plugin
-#~ msgstr 
-#~ كىچىك سۈرەت ياسىغۇچ (Tumbler Font Thumbnailer) قىستۇرمىسىنى توختىتىۋاتىدۇ
-
-#~ msgid Initializing the Tumbler JPEG Thumbnailer plugin
-#~ msgstr 
-#~ كىچىك سۈرەت ياسىغۇچ (Tumbler JPEG Thumbnailer) قىستۇرمىسىنى 
-#~ دەسلەپلەشتۈرۈۋاتىدۇ
-
-#~ msgid Shutting down the Tumbler JPEG Thumbnailer plugin
-#~ msgstr 
-#~ كىچىك سۈرەت ياسىغۇچ (Tumbler JPEG Thumbnailer) قىستۇرمىسىنى توختىتىۋاتىدۇ
-
-#~ msgid Initializing the Tumbler ffmpeg video thumbnailer plugin
-#~ msgstr 
-#~ كىچىك سۈرەت ياسىغۇچ (Tumbler ffmpeg video thumbnailer) قىستۇرمىسىنى 
-#~ دەسلەپلەشتۈرۈۋاتىدۇ
-
-#~ msgid Shutting down the Tumbler ffmpeg video thumbnailer plugin
-#~ msgstr 
-#~ كىچىك سۈرەت ياسىغۇچ (Tumbler ffmpeg video thumbnailer) قىستۇرمىسىنى 
-#~ توختىتىۋاتىدۇ
-
-#~ msgid Initializing the Tumbler ODF Thumbnailer plugin
-#~ msgstr 
-#~ كىچىك 

[Xfce4-commits] parole:master I18n: Update translation ug (72%).

2013-07-11 Thread Transifex
Updating branch refs/heads/master
 to 3699f0cd562054b77e31932210ce62137009f83f (commit)
   from a4c131dae742d51fd47f5bd8396499ccf865680e (commit)

commit 3699f0cd562054b77e31932210ce62137009f83f
Author: Anonymous nore...@xfce.org
Date:   Thu Jul 11 12:31:13 2013 +0200

I18n: Update translation ug (72%).

163 translated messages, 61 untranslated messages.

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

 po/ug.po |  767 ++
 1 files changed, 467 insertions(+), 300 deletions(-)

diff --git a/po/ug.po b/po/ug.po
index 7a22640..6770daf 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -1,142 +1,181 @@
-# Uyghur translation for parole.
+# SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# Gheyret Kenji ghey...@gmail.com, YEAR.
-#
+# 
+# Translators:
 msgid 
 msgstr 
-Project-Id-Version: parole\n
+Project-Id-Version: Xfce Apps\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2012-10-24 01:12+\n
-PO-Revision-Date: 2011-11-09 16:10+0900\n
-Last-Translator: Gheyret Kenji ghey...@gmail.com\n
-Language-Team: Uyghur Computer Science Association u...@yahoogroups.com\n
-Language: \n
+POT-Creation-Date: 2013-07-03 20:28+0200\n
+PO-Revision-Date: 2013-07-11 06:41+\n
+Last-Translator: kawichi\n
+Language-Team: Uighur 
(http://www.transifex.com/projects/p/xfce/language/ug/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: ug\n
+Plural-Forms: nplurals=1; plural=0;\n
 
-#: ../data/interfaces/parole.ui.h:1
-msgid 16:9 (Widescreen)
-msgstr 16:9 (كەڭ ئېكران)
+#: ../data/interfaces/parole.ui.h:1 ../data/desktop/parole.desktop.in.in.h:1
+#: ../src/parole-about.c:68
+msgid Parole Media Player
+msgstr پارولې(Parole) ۋاسىتە قويغۇ
 
 #: ../data/interfaces/parole.ui.h:2
-msgid 20:9 (DVB)
-msgstr 20:9 (DVB)
+msgid _Media
+msgstr ۋاسىتە(_M)
 
 #: ../data/interfaces/parole.ui.h:3
-msgid 4:3 (TV)
-msgstr 4:3 (TV)
+msgid Open _Location
+msgstr 
 
-#: ../data/interfaces/parole.ui.h:4 ../src/misc/parole-filters.c:64
-msgid Audio
-msgstr ئۈن
+#: ../data/interfaces/parole.ui.h:4
+msgid Open Recent
+msgstr 
 
-#: ../data/interfaces/parole.ui.h:5
-msgid Audio Track:
-msgstr ئۇن:
+#: ../data/interfaces/parole.ui.h:5 ../src/parole-disc.c:110
+#: ../src/parole-disc.c:156
+msgid Insert Disc
+msgstr دىسكا سېلىش
 
 #: ../data/interfaces/parole.ui.h:6
-msgid Auto
-msgstr ئاپتوماتىك
+msgid _Edit
+msgstr تەھرىر(_E)
+
+#: ../data/interfaces/parole.ui.h:7
+msgid _Repeat
+msgstr قايتىلا(_R)
 
 #: ../data/interfaces/parole.ui.h:8
-#, no-c-format
-msgid Buffering (0%)
-msgstr يىغىۋاتىدۇ (0%)
+msgid _Shuffle
+msgstr تەرتىپسىز(_S)
 
-#: ../data/interfaces/parole.ui.h:9 ../src/parole-player.c:663
-msgid Empty
-msgstr قۇرۇق
+#: ../data/interfaces/parole.ui.h:9
+msgid Plugins
+msgstr 
 
-#: ../data/interfaces/parole.ui.h:10 ../src/parole-disc.c:125
-#: ../src/parole-disc.c:385
-msgid Insert Disc
-msgstr دىسكا سېلىش
+#: ../data/interfaces/parole.ui.h:10
+msgid _View
+msgstr كۆرۈنۈش(_V)
 
 #: ../data/interfaces/parole.ui.h:11
-msgid Languages
-msgstr تىللار
+msgid _Aspect Ratio
+msgstr ئۇزۇنلۇق كەڭلىك نىسبىتى(_A)
 
 #: ../data/interfaces/parole.ui.h:12
-msgid Media player
-msgstr ۋاسىتە قويغۇ
-
-#: ../data/interfaces/parole.ui.h:13
 msgid None
 msgstr يوق
 
+#: ../data/interfaces/parole.ui.h:13
+msgid Auto
+msgstr ئاپتوماتىك
+
 #: ../data/interfaces/parole.ui.h:14
-msgid Open _location
-msgstr ئورۇننى ئاچ(_O)
+msgid Square
+msgstr كۋادرات
 
-#: ../data/interfaces/parole.ui.h:15 ../src/parole-about.c:55
-msgid Parole Media Player
-msgstr پارولې(Parole) ۋاسىتە قويغۇ
+#: ../data/interfaces/parole.ui.h:15
+msgid 4:3 (TV)
+msgstr 4:3 (TV)
 
 #: ../data/interfaces/parole.ui.h:16
-msgid Pl_ugins
-msgstr قىستۇرمىلار(_U)
+msgid 16:9 (Widescreen)
+msgstr 16:9 (كەڭ ئېكران)
 
 #: ../data/interfaces/parole.ui.h:17
-msgid Select Text Subtitles...
-msgstr فىلىم خېتىنى تاللاش…
+msgid 20:9 (DVB)
+msgstr 20:9 (DVB)
 
 #: ../data/interfaces/parole.ui.h:18
-msgid Show _playlist
-msgstr قويۇش تىزىمىنى كۆرسەت(_P)
+msgid Subtitles
+msgstr فىلىم خېتى
 
 #: ../data/interfaces/parole.ui.h:19
-msgid Square
-msgstr كۋادرات
+msgid Select Text Subtitles...
+msgstr فىلىم خېتىنى تاللاش…
 
 #: ../data/interfaces/parole.ui.h:20
-msgid Subtitles
-msgstr فىلىم خېتى
+msgid Show _playlist
+msgstr قويۇش تىزىمىنى كۆرسەت(_P)
 
-#: ../data/interfaces/parole.ui.h:21
-msgid Subtitles:
-msgstr فىلىم خېتى:
+#: ../data/interfaces/parole.ui.h:21 ../src/misc/parole-filters.c:64
+msgid Audio
+msgstr ئۈن
 
 #: ../data/interfaces/parole.ui.h:22
-msgid Volume _Down
-msgstr ئاۋازنى كىچىكلەت(_D)
+msgid Languages
+msgstr تىللار
 
-#: ../data/interfaces/parole.ui.h:23
-msgid Volume _Up
-msgstr ئاۋازنى چوڭايت(_U)
+#: ../data/interfaces/parole.ui.h:23 ../src/parole-player.c:746
+msgid Empty
+msgstr قۇرۇق
 
 #: ../data/interfaces/parole.ui.h:24
-msgid _Aspect Ratio

[Xfce4-commits] exo:master I18n: Update translation ug (100%).

2013-07-11 Thread Transifex
Updating branch refs/heads/master
 to 79646f6fe3b209a852c2ff903646274bc9191e1d (commit)
   from c1b4417a726c841f39b9f80c8ed34957b206f4c5 (commit)

commit 79646f6fe3b209a852c2ff903646274bc9191e1d
Author: Anonymous nore...@xfce.org
Date:   Thu Jul 11 12:30:04 2013 +0200

I18n: Update translation ug (100%).

279 translated messages.

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

 po/ug.po |  167 --
 1 files changed, 43 insertions(+), 124 deletions(-)

diff --git a/po/ug.po b/po/ug.po
index f4cec90..b981732 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -1,20 +1,21 @@
-# Uyghur translation for exo-1.
+# SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# Gheyret Kenji ghey...@gmail.com, YEAR.
 # 
+# Translators:
 msgid 
 msgstr 
-Project-Id-Version: exo-1\n
+Project-Id-Version: Exo\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2013-01-24 23:30+\n
-PO-Revision-Date: 2011-11-09 16:10+0900\n
-Last-Translator: Gheyret Kenji ghey...@gmail.com\n
-Language-Team: Uyghur Computer Science Association u...@yahoogroups.com\n
+POT-Creation-Date: 2013-07-02 22:30+0200\n
+PO-Revision-Date: 2013-07-11 06:27+\n
+Last-Translator: kawichi\n
+Language-Team: Uighur 
(http://www.transifex.com/projects/p/xfce/language/ug/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: \n
+Language: ug\n
+Plural-Forms: nplurals=1; plural=0;\n
 
 #: ../exo/exo-cell-renderer-ellipsized-text.c:131
 #: ../exo/exo-cell-renderer-icon.c:144
@@ -62,11 +63,8 @@ msgstr ھۆججەت «%s» نى ئوقۇيالمىدى: %s
 
 #: ../exo/exo-gdk-pixbuf-extensions.c:890
 #, c-format
-msgid 
-Failed to load image \%s\: Unknown reason, probably a corrupt image file
-msgstr 
-رەسىم «%s» نى ئوقۇش مەغلۇپ بولدى،: نامەلۇم سەۋەب،  رەسىم ھۆججىتى بۇزۇلغان 
-بولۇشى مۇمكىن
+msgid Failed to load image \%s\: Unknown reason, probably a corrupt image 
file
+msgstr رەسىم «%s» نى ئوقۇش مەغلۇپ بولدى،: نامەلۇم سەۋەب،  رەسىم ھۆججىتى 
بۇزۇلغان بولۇشى مۇمكىن
 
 #: ../exo/exo-gtk-extensions.c:227
 #, c-format
@@ -275,9 +273,7 @@ msgstr Markup ئىستونى
 
 #: ../exo/exo-icon-view.c:778
 msgid Model column used to retrieve the text if using Pango markup
-msgstr 
-Pango markup ئىشلىتىلگەن ۋاقىتتا تېكىستتىن ئىزدەشتە ئىشلىتىلىدىغان مودېل 
-ئىستونى
+msgstr Pango markup ئىشلىتىلگەن ۋاقىتتا تېكىستتىن ئىزدەشتە ئىشلىتىلىدىغان 
مودېل ئىستونى
 
 #: ../exo/exo-icon-view.c:792
 msgid Icon View Model
@@ -340,9 +336,7 @@ msgstr بىرلا چېكىش ۋاقىت چېكى
 msgid 
 The amount of time after which the item under the mouse cursor will be 
 selected automatically in single click mode
-msgstr 
-بىرلا چېكىپ تاللاش ھالىتىدە،  چاشقىنەك بار يەردىكى تۈرنى ئاپتوماتىك تاللاش 
-ئۈچۈن چاشقىنەكنىڭ جىم تۇرۇش ۋاقتى
+msgstr بىرلا چېكىپ تاللاش ھالىتىدە،  چاشقىنەك بار يەردىكى تۈرنى ئاپتوماتىك 
تاللاش ئۈچۈن چاشقىنەكنىڭ جىم تۇرۇش ۋاقتى
 
 #: ../exo/exo-icon-view.c:934
 msgid Spacing
@@ -388,9 +382,7 @@ msgstr يېڭىدىن قورال بالدىقى قوشۇش(_A)
 msgid 
 Drag an item onto the toolbars above to add it, from the toolbars in the 
 items table to remove it.
-msgstr 
-قوشماقچى بولغان تۈرنى قورال بالدىقىغا تۇتۇپ تاشلاڭ، قورال بالدىقى تۇتۇپ 
-ئالسىڭىز تۈر ئۆچۈرۈلىدۇ.
+msgstr قوشماقچى بولغان تۈرنى قورال بالدىقىغا تۇتۇپ تاشلاڭ، قورال بالدىقى 
تۇتۇپ ئالسىڭىز تۈر ئۆچۈرۈلىدۇ.
 
 #: ../exo/exo-toolbars-editor.c:537
 msgid Separator
@@ -516,8 +508,7 @@ msgstr   --strip-comments  XML ھۆججەتنىڭ تەركىبىدىكى ئىز
 #: ../exo-csource/main.c:294
 #, c-format
 msgid   --strip-content   Remove node contents from XML files\n
-msgstr 
-  --strip-content   XML ھۆججەتنىڭ تەركىبىدىكى تۈگۈن ئۇچۇرلىرىنى ئۆچۈرىدۇ\n
+msgstr   --strip-content   XML ھۆججەتنىڭ تەركىبىدىكى تۈگۈن ئۇچۇرلىرىنى 
ئۆچۈرىدۇ\n
 
 #: ../exo-csource/main.c:304 ../exo-desktop-item-edit/main.c:195
 #: ../exo-open/main.c:496
@@ -528,12 +519,7 @@ msgid 
 \n
 Written by Benedikt Meurer be...@xfce.org.\n
 \n
-msgstr 
-Copyright (c) %s\n
-os-cillation e.K. All rights reserved.\n
-\n
-Benedikt Meurer be...@xfce.org ئىشلىگەن.\n
-\n
+msgstr Copyright (c) %s\nos-cillation e.K. All rights 
reserved.\n\nBenedikt Meurer be...@xfce.org ئىشلىگەن.\n\n
 
 #: ../exo-csource/main.c:308 ../exo-desktop-item-edit/main.c:199
 #: ../exo-open/main.c:500
@@ -544,12 +530,7 @@ msgid 
 the GNU Lesser General Public License which can be found in the\n
 %s source package.\n
 \n
-msgstr 
-%s ھېچقانداق كاپالەتكە ئىگە ئەمەس,\n
-You may redistribute copies of %s under the terms of\n
-the GNU Lesser General Public License which can be found in the\n
-%s source package.\n
-\n
+msgstr %s ھېچقانداق كاپالەتكە ئىگە ئەمەس,\nYou may redistribute copies of %s 
under the terms of\nthe GNU Lesser General Public License which can be found in 
the\n%s source package.\n\n
 
 #: ../exo-csource/main.c:312 ../exo-desktop-item-edit/main.c:203
 #: ../exo-open/main.c:504
@@ -659,9 +640,7 @@ 

[Xfce4-commits] thunar-vcs-plugin:master I18n: Update translation it (74%).

2013-07-11 Thread Transifex
Updating branch refs/heads/master
 to 1f973e41e3a5000d79b664c30d4852ac9c5d7152 (commit)
   from f548bdfe74841bba248dd40ae06d25ef88af9a3f (commit)

commit 1f973e41e3a5000d79b664c30d4852ac9c5d7152
Author: andreazube andreazu...@gmail.com
Date:   Thu Jul 11 12:30:34 2013 +0200

I18n: Update translation it (74%).

232 translated messages, 79 untranslated messages.

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

 po/it.po |   13 +++--
 1 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/po/it.po b/po/it.po
index 8adc6bb..6df936d 100644
--- a/po/it.po
+++ b/po/it.po
@@ -3,6 +3,7 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# andreazube andreazu...@gmail.com, 2013
 # Carmine Diego Principe cdprinc...@gmail.com, 2013
 # cri cri.pe...@gmail.com, 2011
 # edmael edoardo.elid...@gmail.com, 2013
@@ -11,8 +12,8 @@ msgstr 
 Project-Id-Version: Thunar Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-03 20:11+0200\n
-PO-Revision-Date: 2013-07-07 13:09+\n
-Last-Translator: edmael edoardo.elid...@gmail.com\n
+PO-Revision-Date: 2013-07-11 10:29+\n
+Last-Translator: andreazube andreazu...@gmail.com\n
 Language-Team: Italian 
(http://www.transifex.com/projects/p/xfce/language/it/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -273,7 +274,7 @@ msgstr GIT
 
 #: ../thunar-vcs-plugin/tvp-svn-action.c:317
 msgid Menu|Changelist
-msgstr 
+msgstr Changelist
 
 #: ../thunar-vcs-plugin/tvp-svn-action.c:317
 msgid Changelist
@@ -1024,7 +1025,7 @@ msgstr Modificato
 #: ../tvp-svn-helper/tsh-common.c:548 ../tvp-svn-helper/tsh-common.c:737
 #: ../tvp-svn-helper/tsh-common.c:790 ../tvp-svn-helper/tsh-common.c:883
 msgid Replaced
-msgstr 
+msgstr Sostituito
 
 #: ../tvp-svn-helper/tsh-common.c:549
 msgid Transmitting
@@ -1072,7 +1073,7 @@ msgstr 
 
 #: ../tvp-svn-helper/tsh-common.c:561
 msgid Replace
-msgstr 
+msgstr Sostituisci
 
 #: ../tvp-svn-helper/tsh-common.c:563
 msgid Property added
@@ -1180,7 +1181,7 @@ msgstr 
 
 #: ../tvp-svn-helper/tsh-common.c:592
 msgid URL redirect
-msgstr 
+msgstr URL redirect
 
 #: ../tvp-svn-helper/tsh-common.c:593
 msgid Path nonexistent
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-appfinder:master I18n: Update translation ug (100%).

2013-07-11 Thread Transifex
Updating branch refs/heads/master
 to 551dc9e16e09f509c5a32155b46a635a6cdadaab (commit)
   from 59a4b67259e35fdc94921fd9c9e255f49f9a726c (commit)

commit 551dc9e16e09f509c5a32155b46a635a6cdadaab
Author: Anonymous nore...@xfce.org
Date:   Thu Jul 11 12:30:47 2013 +0200

I18n: Update translation ug (100%).

66 translated messages.

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

 po/ug.po |  223 ++
 1 files changed, 107 insertions(+), 116 deletions(-)

diff --git a/po/ug.po b/po/ug.po
index 1a34a13..76c96b9 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -1,50 +1,51 @@
-# Uyghur translation for xfce4-appfinder.
+# SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# Gheyret Kenji ghey...@gmail.com, YEAR.
-#
+# 
+# Translators:
 msgid 
 msgstr 
-Project-Id-Version: xfce4-appfinder\n
+Project-Id-Version: Xfce4-appfinder\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2012-10-24 02:18+\n
-PO-Revision-Date: 2011-11-09 16:10+0900\n
-Last-Translator: Gheyret Kenji ghey...@gmail.com\n
-Language-Team: Uyghur Computer Science Association u...@yahoogroups.com\n
-Language: \n
+POT-Creation-Date: 2013-07-02 22:40+0200\n
+PO-Revision-Date: 2013-07-11 06:30+\n
+Last-Translator: kawichi\n
+Language-Team: Uighur 
(http://www.transifex.com/projects/p/xfce/language/ug/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: ug\n
+Plural-Forms: nplurals=1; plural=0;\n
 
 #: ../src/appfinder-category-model.c:146
 msgid All Applications
 msgstr بارلىق پروگراممىلار
 
-#: ../src/appfinder-model.c:545
+#: ../src/appfinder-model.c:549
 msgid Name
 msgstr ئاتى
 
-#: ../src/appfinder-model.c:546
+#: ../src/appfinder-model.c:550
 msgid Comment
 msgstr ئىزاھات
 
-#: ../src/appfinder-model.c:547
+#: ../src/appfinder-model.c:551
 msgid Command
 msgstr بۇيرۇق
 
-#: ../src/appfinder-model.c:548
+#: ../src/appfinder-model.c:552
 msgid Categories
 msgstr كاتېگورىيە
 
-#: ../src/appfinder-model.c:549
+#: ../src/appfinder-model.c:553
 msgid Filename
 msgstr ھۆججەت ئاتى
 
-#: ../src/appfinder-model.c:1829
+#: ../src/appfinder-model.c:1833
 msgid Application has no command
 msgstr پروگراممىنىڭ بۇيرۇقى يوق
 
-#: ../src/appfinder-model.c:2153
+#: ../src/appfinder-model.c:2157
 msgid Commands History
 msgstr بۇيرۇق ئىزلىرى
 
@@ -69,234 +70,224 @@ msgstr ئىختىيارىي مەشغۇلاتلار مەڭگۈلۈككە ئۆچ
 msgid Are you sure you want to delete pattern \%s\?
 msgstr ئەندىزە «%s» نى راستىنىلا ئۆچۈرەمسىز؟
 
-#: ../src/appfinder-window.c:219 ../src/main.c:446
-#: ../src/appfinder-preferences.glade.h:4
+#: ../src/appfinder-window.c:222 ../src/appfinder-preferences.glade.h:10
 #: ../data/xfce4-appfinder.desktop.in.h:1
 msgid Application Finder
 msgstr پروگرامما ئىزدىگۈ
 
-#: ../src/appfinder-window.c:286
+#: ../src/appfinder-window.c:289
 msgid Toggle view mode
 msgstr كۆرۈنۈش ھالىتىنى ئۆزگەرتىش
 
-#: ../src/appfinder-window.c:391
+#: ../src/appfinder-window.c:394
 msgid La_unch
 msgstr ئىجرا قىل(_U)
 
-#: ../src/appfinder-window.c:826
+#: ../src/appfinder-window.c:844
 msgid Failed to launch desktop item editor
 msgstr ئۈستەلئۈستى تۇرى تەھرىرلىگۈچىنى ئىجرا قىلىش مەغلۇپ بولدى
 
-#: ../src/appfinder-window.c:852
+#: ../src/appfinder-window.c:870
 msgid 
 This will permanently remove the custom desktop file from your home 
 directory.
 msgstr ئىختىيارىي ئۈستەلئۈستى ھۆججىتى ماكان مۇندەرىجىڭىزدىن مەڭگۈلۈككە 
يوقىلىدۇ.
 
-#: ../src/appfinder-window.c:853
+#: ../src/appfinder-window.c:871
 #, c-format
 msgid Are you sure you want to revert \%s\?
 msgstr راستلا «%s» نى ئەسلىگە قايتۇرامسىز؟
 
-#: ../src/appfinder-window.c:863
+#: ../src/appfinder-window.c:881
 msgid Failed to remove desktop file
 msgstr ئۈستەلئۈستى ھۆججىتىنى ئۆچۈرۈش مەغلۇپ بولدى
 
 #. I18N: the first %s will be replace with users' applications directory, the
 #. * second with Hidden=true
-#: ../src/appfinder-window.c:896
+#: ../src/appfinder-window.c:914
 #, c-format
 msgid 
 To unhide the item you have to manually remove the desktop file from \%s\ 
 or open the file in the same directory and remove the line \%s\.
 msgstr بىرەر تۇرنى كۆرۈنىدىغان قىلىش ئۈچۈن ئۈستەلئۈستى ھۆججىتىنى «%s» دىن 
ئۆچۈرسىڭىز ياكى مۇشۇ مۇندەرىجىدىكى  ھۆججەتنى ئېچىپ «%s» دېگەن قۇرنى 
ئۆچۈرۈۋەتسىڭىز بولىدۇ.
 
-#: ../src/appfinder-window.c:901 ../src/appfinder-window.c:993
+#: ../src/appfinder-window.c:919 ../src/appfinder-window.c:1017
 msgid _Hide
 msgstr يوشۇر(_H)
 
-#: ../src/appfinder-window.c:902
+#: ../src/appfinder-window.c:920
 #, c-format
 msgid Are you sure you want to hide \%s\?
 msgstr راستلا «%s» نى يوشۇرامسىز؟
 
-#: ../src/main.c:75
+#: ../src/main.c:64
 msgid Start in collapsed mode
 msgstr قاتلانغان ھالەتتە باشلانسۇن
 
-#: ../src/main.c:76
+#: ../src/main.c:65
 msgid Print version information and exit
 msgstr نەشر ئۇچۇرىنى كۆرسىتىپ ئاخىرلاشتۇرۇش
 
-#: ../src/main.c:77

[Xfce4-commits] xfce4-cpufreq-plugin:master I18n: Update translation it (100%).

2013-07-11 Thread Transifex
Updating branch refs/heads/master
 to 08b4863cda315c614bc358e7c4b4a99cdc87ec74 (commit)
   from a4dcb92b581bfe80190e9762543cfa3bb27fd5d6 (commit)

commit 08b4863cda315c614bc358e7c4b4a99cdc87ec74
Author: cri cri.pe...@gmail.com
Date:   Thu Jul 11 18:31:29 2013 +0200

I18n: Update translation it (100%).

25 translated messages.

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

 po/it.po |   88 +
 1 files changed, 42 insertions(+), 46 deletions(-)

diff --git a/po/it.po b/po/it.po
index 7cf1c77..cb0b002 100644
--- a/po/it.po
+++ b/po/it.po
@@ -1,119 +1,121 @@
-# Italian translations for xfce4-cpufreq-plugin package.
-# Copyright (C) 2007 THE xfce4-cpufreq-plugin'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the xfce4-cpufreq-plugin 
package.
-# Fabio Riga u...@aruba.it, 2007.
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
 # 
+# Translators:
+# cri cri.pe...@gmail.com, 2013
+# Fabio Riga u...@aruba.it, 2007
 msgid 
 msgstr 
-Project-Id-Version: xfce 4-cpufreq-plugin 0.2\n
+Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-01-18 17:07+\n
-PO-Revision-Date: 2010-12-30 21:05+0100\n
-Last-Translator: Cristian Marchi cri.pe...@gmail.com\n
-Language-Team: Italian xfce-i...@xfce.org\n
+POT-Creation-Date: 2013-07-03 20:53+0200\n
+PO-Revision-Date: 2013-07-11 12:13+\n
+Last-Translator: cri cri.pe...@gmail.com\n
+Language-Team: Italian 
(http://www.transifex.com/projects/p/xfce/language/it/)\n
 MIME-Version: 1.0\n
-Content-Type: text/plain; charset=utf-8\n
+Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: it\n
 Plural-Forms: nplurals=2; plural=(n != 1);\n
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:103
+#: ../panel-plugin/xfce4-cpufreq-configure.c:110
 msgid Configure CPU Frequency Monitor
 msgstr Configurazione del monitor della frequenza della CPU
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:105
+#: ../panel-plugin/xfce4-cpufreq-configure.c:112
 msgid Configure the CPU frequency plugin
 msgstr Configurazione del plugin per la frequenza della CPU
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:122
+#: ../panel-plugin/xfce4-cpufreq-configure.c:129
 msgid bMonitor/b
 msgstr bMonitor/b
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:137
+#: ../panel-plugin/xfce4-cpufreq-configure.c:144
 msgid Timeout Interval:
 msgstr Intervallo di timeout:
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:153
+#: ../panel-plugin/xfce4-cpufreq-configure.c:160
 msgid bPanel/b
 msgstr bPannello/b
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:170
+#: ../panel-plugin/xfce4-cpufreq-configure.c:177
 msgid Display CPU:
 msgstr Visualizza CPU:
 
 #. check buttons for display widgets in panel
-#: ../panel-plugin/xfce4-cpufreq-configure.c:189
+#: ../panel-plugin/xfce4-cpufreq-configure.c:196
 msgid Show frame
 msgstr Mostra cornice
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:194
+#: ../panel-plugin/xfce4-cpufreq-configure.c:201
 msgid Show CPU icon
 msgstr Mostra l'icona della CPU
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:199
+#: ../panel-plugin/xfce4-cpufreq-configure.c:206
 msgid Show CPU frequency
 msgstr Mostra la frequenza della CPU
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:204
+#: ../panel-plugin/xfce4-cpufreq-configure.c:211
 msgid Show CPU governor
-msgstr Mostra il CPU governor
+msgstr Mostra profilo CPU
 
-#: ../panel-plugin/xfce4-cpufreq-linux.c:412
+#: ../panel-plugin/xfce4-cpufreq-linux.c:413
 msgid 
 Your system does not support cpufreq.\n
 The applet only shows the current cpu frequency
-msgstr 
-Il proprio sistema non supporta cpufreq.\n
-L'applet mostra solamente la frequenza della CPU 
+msgstr Il proprio sistema non supporta cpufreq.\nL'applet mostra solamente la 
frequenza della CPU 
 
-#: ../panel-plugin/xfce4-cpufreq-overview.c:64
+#: ../panel-plugin/xfce4-cpufreq-overview.c:65
 msgid Scaling driver:
 msgstr Driver per lo scaling:
 
-#: ../panel-plugin/xfce4-cpufreq-overview.c:70
+#: ../panel-plugin/xfce4-cpufreq-overview.c:71
 #, c-format
 msgid No scaling driver available
 msgstr Nessun driver disponibile per lo scaling
 
-#: ../panel-plugin/xfce4-cpufreq-overview.c:81
+#: ../panel-plugin/xfce4-cpufreq-overview.c:82
 msgid Available frequencies:
 msgstr Frequenze disponibili:
 
-#: ../panel-plugin/xfce4-cpufreq-overview.c:136
+#: ../panel-plugin/xfce4-cpufreq-overview.c:137
 msgid Available governors:
-msgstr Governor disponibili:
+msgstr Profili disponibili:
 
-#: ../panel-plugin/xfce4-cpufreq-overview.c:159
+#: ../panel-plugin/xfce4-cpufreq-overview.c:160
 msgid Current governor:
-msgstr Governor corrente:
+msgstr Profilo corrente:
 
-#: ../panel-plugin/xfce4-cpufreq-overview.c:194
+#: ../panel-plugin/xfce4-cpufreq-overview.c:195
 msgid CPU Information
 msgstr Informazioni CPU
 

[Xfce4-commits] thunar-vcs-plugin:master I18n: Update translation it (76%).

2013-07-11 Thread Transifex
Updating branch refs/heads/master
 to 88211daf22d37946e80aaf82c927b1d6f47772b6 (commit)
   from 1f973e41e3a5000d79b664c30d4852ac9c5d7152 (commit)

commit 88211daf22d37946e80aaf82c927b1d6f47772b6
Author: winebar vs.wine...@gmail.com
Date:   Thu Jul 11 18:30:32 2013 +0200

I18n: Update translation it (76%).

237 translated messages, 74 untranslated messages.

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

 po/it.po |   15 ---
 1 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/po/it.po b/po/it.po
index 6df936d..02d379f 100644
--- a/po/it.po
+++ b/po/it.po
@@ -7,13 +7,14 @@
 # Carmine Diego Principe cdprinc...@gmail.com, 2013
 # cri cri.pe...@gmail.com, 2011
 # edmael edoardo.elid...@gmail.com, 2013
+# winebar vs.wine...@gmail.com, 2013
 msgid 
 msgstr 
 Project-Id-Version: Thunar Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-03 20:11+0200\n
-PO-Revision-Date: 2013-07-11 10:29+\n
-Last-Translator: andreazube andreazu...@gmail.com\n
+PO-Revision-Date: 2013-07-11 12:25+\n
+Last-Translator: winebar vs.wine...@gmail.com\n
 Language-Team: Italian 
(http://www.transifex.com/projects/p/xfce/language/it/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -442,7 +443,7 @@ msgstr Repository:
 
 #: ../thunar-vcs-plugin/tvp-svn-property-page.c:160
 msgid Modified revision:
-msgstr 
+msgstr Revisione modificata:
 
 #: ../thunar-vcs-plugin/tvp-svn-property-page.c:172
 msgid Modified date:
@@ -998,11 +999,11 @@ msgstr 
 
 #: ../tvp-svn-helper/tsh-common.c:534
 msgid Reverted
-msgstr 
+msgstr Repristinato
 
 #: ../tvp-svn-helper/tsh-common.c:535
 msgid Revert failed
-msgstr 
+msgstr Ripristino fallito
 
 #: ../tvp-svn-helper/tsh-common.c:537
 msgid Skipped
@@ -1149,7 +1150,7 @@ msgstr Informazioni sull'unione
 
 #: ../tvp-svn-helper/tsh-common.c:583
 msgid Upgraded path
-msgstr 
+msgstr Percorso aggiornato
 
 #: ../tvp-svn-helper/tsh-common.c:584
 msgid Merge record info begin
@@ -1272,7 +1273,7 @@ msgstr Copia in
 
 #: ../tvp-svn-helper/tsh-delete.c:118
 msgid Local delete
-msgstr 
+msgstr Elimina localmente
 
 #: ../tvp-svn-helper/tsh-delete.c:158
 msgid Delete Message
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-timer-plugin:master I18n: Update translation it (100%).

2013-07-11 Thread Transifex
Updating branch refs/heads/master
 to 883b79bb9c75e0f046130eb06585608375fd7dc5 (commit)
   from 03ce1abd77068d581a2a04d44fbebd85b120fcfb (commit)

commit 883b79bb9c75e0f046130eb06585608375fd7dc5
Author: cri cri.pe...@gmail.com
Date:   Thu Jul 11 18:32:02 2013 +0200

I18n: Update translation it (100%).

32 translated messages.

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

 po/it.po |   70 --
 1 files changed, 18 insertions(+), 52 deletions(-)

diff --git a/po/it.po b/po/it.po
index 64b7d7c..1efeb89 100644
--- a/po/it.po
+++ b/po/it.po
@@ -1,24 +1,23 @@
-# Italian translation of xfce4-timer-plugin.
+# SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the xfce4-timer-plugin 
package.
-# Cristian Marchi cri.pe...@gmail.com, 2009.
+# This file is distributed under the same license as the PACKAGE package.
 # 
+# Translators:
+# cri cri.pe...@gmail.com, 2009,2013
 msgid 
 msgstr 
-Project-Id-Version: xfce4-timer-plugin\n
+Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2006-09-10 21:29+0200\n
-PO-Revision-Date: 2009-02-01 19:33+0100\n
-Last-Translator: Cristian Marchi cri.pe...@gmail.com\n
-Language-Team: Italian xfce-it-translat...@googlegroups.com\n
+PO-Revision-Date: 2013-07-11 12:10+\n
+Last-Translator: cri cri.pe...@gmail.com\n
+Language-Team: Italian 
(http://www.transifex.com/projects/p/xfce/language/it/)\n
 MIME-Version: 1.0\n
-Content-Type: text/plain; charset=utf-8\n
+Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
 Language: it\n
+Plural-Forms: nplurals=2; plural=(n != 1);\n
 
-# GLOSSARIO
-# left = mancare
-# timer = sveglia
 #: ../src/xfcetimer.c:100
 #, c-format
 msgid %dh %dm %ds left
@@ -38,17 +37,15 @@ msgstr Mancano %dsecondi
 msgid 
 Beeep! :) \n
 Time is up!
-msgstr 
-Driiin! :) \n
-Il tempo è scaduto!
+msgstr Driiin! :) \nIl tempo è scaduto!
 
 #: ../src/xfcetimer.c:424
 msgid Stop timer
-msgstr Interrompi la sveglia
+msgstr Interrompi il cronometro
 
 #: ../src/xfcetimer.c:426
 msgid Start timer
-msgstr Avvia la sveglia
+msgstr Avvia il cronometro
 
 #: ../src/xfcetimer.c:436
 msgid Stop the alarm
@@ -103,18 +100,14 @@ msgstr s  
 msgid 
 \n
 or\n
-msgstr 
-\n
-or\n
+msgstr \nor\n
 
 #. **
 #: ../src/xfcetimer.c:673
 msgid 
 \n
 The command to run
-msgstr 
-\n
-Il comando da eseguire
+msgstr \nIl comando da eseguire
 
 #: ../src/xfcetimer.c:699
 msgid Add new alarm
@@ -136,17 +129,13 @@ msgstr Opzioni della sveglia di Xfce4
 msgid 
 Timer\n
 name
-msgstr 
-Nome\n
-sveglia
+msgstr Nome\nsveglia
 
 #: ../src/xfcetimer.c:1210
 msgid 
 Countdown period /\n
 Alarm time
-msgstr 
-Durata del conto alla rovescia/\n
-ora della sveglia.
+msgstr Durata del conto alla rovescia/\nora della sveglia.
 
 #: ../src/xfcetimer.c:1214
 msgid Alarm command
@@ -156,9 +145,7 @@ msgstr Comando di sveglia
 msgid 
 Don't display the warning window\n
 if an alarm command is set
-msgstr 
-Non visualizzare la finestra di avviso\n
-se è impostato un comando di sveglia
+msgstr Non visualizzare la finestra di avviso\nse è impostato un comando di 
sveglia
 
 #: ../src/xfcetimer.c:1264
 msgid Repeat the alarm command:
@@ -179,24 +166,3 @@ msgstr Plugin della sveglia per il pannello di Xfce
 #: ../src/xfce4-timer.desktop.in.in.h:2
 msgid Xfce4 Timer
 msgstr Sveglia di Xfce4
-
-#~ msgid Resume timer
-#~ msgstr Avvia la sveglia
-
-#~ msgid Pause timer
-#~ msgstr Avvia la sveglia
-
-#~ msgid or
-#~ msgstr or
-
-#~ msgid Xfce 4 Timer Plugin
-#~ msgstr Opzioni della sveglia di Xfce4
-
-#~ msgid Use a default alarm command
-#~ msgstr Ripeti il comando di sveglia:
-
-#~ msgid Default command: 
-#~ msgstr Comando di sveglia
-
-#~ msgid About xfce4-timer-plugin
-#~ msgstr Opzioni della sveglia di Xfce4
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-session:master I18n: Update translation it (100%).

2013-07-11 Thread Transifex
Updating branch refs/heads/master
 to 148e6d86215bab22eb51143ef66fe838400f1c76 (commit)
   from f78623f009f9ee5b18c178f9240d625a9ad06d8b (commit)

commit 148e6d86215bab22eb51143ef66fe838400f1c76
Author: cri cri.pe...@gmail.com
Date:   Thu Jul 11 18:30:52 2013 +0200

I18n: Update translation it (100%).

208 translated messages.

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

 po/it.po |  605 ++
 1 files changed, 132 insertions(+), 473 deletions(-)

diff --git a/po/it.po b/po/it.po
index 86a9c09..9fc127f 100644
--- a/po/it.po
+++ b/po/it.po
@@ -1,42 +1,32 @@
-# Italian translations for xfce4-session package.
-# Copyright (C) 2003-2006 The Xfce development team.
-# This file is distributed under the same license as the xfce4-session package.
-# Luca Marrocco buil...@libero.it, 2003.
-# Fabio Riga u...@aruba.it, 2007-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:
+# cri cri.pe...@gmail.com, 2013
+# Luca Marrocco buil...@libero.it, 2003
 msgid 
 msgstr 
-Project-Id-Version: xfce4-session 4.4.0\n
+Project-Id-Version: Xfce4-session\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2012-11-16 13:51+\n
-PO-Revision-Date: 2010-01-28 15:03+0100\n
-Last-Translator: Cristian Marchi cri.pe...@gmail.com\n
-Language-Team: Italian xfce-it-translat...@googlegroups.com\n
+POT-Creation-Date: 2013-07-02 22:44+0200\n
+PO-Revision-Date: 2013-07-11 12:02+\n
+Last-Translator: cri cri.pe...@gmail.com\n
+Language-Team: Italian 
(http://www.transifex.com/projects/p/xfce/language/it/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
 Language: it\n
+Plural-Forms: nplurals=2; plural=(n != 1);\n
 
 #: ../xfce.desktop.in.h:1
-msgid Use this session to run Xfce as your desktop environment
-msgstr Usare questa sessione per avviare Xfce come ambiente grafico
-
-#: ../xfce.desktop.in.h:2
 msgid Xfce Session
 msgstr Sessione di Xfce
 
-# GLOSSARIO
-# failed = non riuscito
-# failsafe session = sessione di ripristino
-# helper = assistente
-# hibernate = ibernare
-# idle state= inattivo
-# log in = accesso
-# log out = uscire
-# restart, reboot = riavviare
-# shutdown = spegnere
-# splash theme = tema di avvio
-# suspend = sospendere
+#: ../xfce.desktop.in.h:2
+msgid Use this session to run Xfce as your desktop environment
+msgstr Usare questa sessione per avviare Xfce come ambiente grafico
+
 #: ../engines/balou/balou-theme.c:110
 msgid No description given
 msgstr Nessuna descrizione fornita
@@ -61,7 +51,7 @@ msgstr Verificare che il file sia un archivio del tema di 
avvio valido.
 #: ../engines/balou/config.c:402
 #, c-format
 msgid Unable to remove splash theme \%s\ from directory %s.
-msgstr Impossibile rimuovere il tema di avvio \%s\ dalla cartella %s.
+msgstr Impossibile rimuovere il tema di avvio \%s\ dalla cartella «%s».
 
 #: ../engines/balou/config.c:491
 msgid Choose theme filename...
@@ -117,7 +107,7 @@ msgstr Colori
 
 #: ../engines/simple/simple.c:375
 msgid Background color:
-msgstr Colore dello sfondo:
+msgstr Colore di sfondo:
 
 #: ../engines/simple/simple.c:388
 msgid Text color:
@@ -152,13 +142,13 @@ msgid Simple Splash Engine
 msgstr Motore di avvio Semplice
 
 #: ../scripts/xscreensaver.desktop.in.h:1
-msgid Launch screensaver and locker program
-msgstr Avvio il salvaschermo e il programma di blocco
-
-#: ../scripts/xscreensaver.desktop.in.h:2
 msgid Screensaver
 msgstr Salvaschermo
 
+#: ../scripts/xscreensaver.desktop.in.h:2
+msgid Launch screensaver and locker program
+msgstr Avvio il salvaschermo e il programma di blocco
+
 #: ../settings/main.c:43
 msgid Settings manager socket
 msgstr Socket del gestore delle impostazioni
@@ -193,8 +183,7 @@ msgstr Impossibile contattare il server delle impostazioni
 
 #: ../settings/main.c:116
 msgid Unable to create user interface from embedded definition data
-msgstr 
-Impossibile creare l'interfaccia utente dai dati di definizione inclusi
+msgstr Impossibile creare l'interfaccia utente dai dati di definizione 
inclusi
 
 #: ../settings/main.c:128
 msgid App_lication Autostart
@@ -236,9 +225,7 @@ msgstr Svuotare davvero la cache delle sessioni?
 msgid 
 The saved states of your applications will not be restored during your next 
 login.
-msgstr 
-Lo stato salvato delle proprie applicazioni non verrà rispristinato al 
-prossimo accesso.
+msgstr Lo stato salvato delle proprie applicazioni non verrà rispristinato al 
prossimo accesso.
 
 #: ../settings/session-editor.c:174
 msgid _Proceed
@@ -266,12 +253,10 @@ msgstr Termina programma
 msgid 
 The application will lose any unsaved state and will not be restarted in 
 your next session.
-msgstr 
-L'applicazione perderà qualsiasi stato non salvato e non verrà riavviata 
-nella prossima sessione.
+msgstr L'applicazione perderà qualsiasi stato 

[Xfce4-commits] xfconf:master Drop deprecated function.

2013-07-11 Thread Nick Schermer
Updating branch refs/heads/master
 to 5719a34aad35eb1e91c595006c11d7b7978a0488 (commit)
   from ad34d1cd10c2df8568d02bcb4975d7c64ba3b6f6 (commit)

commit 5719a34aad35eb1e91c595006c11d7b7978a0488
Author: Nick Schermer n...@xfce.org
Date:   Thu Jul 11 22:26:53 2013 +0200

Drop deprecated function.

 xfconf-query/main.c |3 +++
 xfconf/xfconf.c |2 ++
 xfconfd/main.c  |3 +++
 3 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/xfconf-query/main.c b/xfconf-query/main.c
index fe09918..95c9200 100644
--- a/xfconf-query/main.c
+++ b/xfconf-query/main.c
@@ -240,7 +240,10 @@ main(int argc, char **argv)
 #endif
 xfce_textdomain (GETTEXT_PACKAGE, LOCALEDIR, UTF-8);
 
+#ifn GLIB_CHECK_VERSION(2,36,0)
 g_type_init();
+#endif
+
 if(!xfconf_init(error))
 {
 xfconf_query_printerr(_(Failed to init libxfconf: %s), 
error-message);
diff --git a/xfconf/xfconf.c b/xfconf/xfconf.c
index b412099..f7c0a5e 100644
--- a/xfconf/xfconf.c
+++ b/xfconf/xfconf.c
@@ -127,7 +127,9 @@ xfconf_init(GError **error)
 return TRUE;
 }
 
+#ifn GLIB_CHECK_VERSION(2,36,0)
 g_type_init();
+#endif
 
 xfconf_static_dbus_init();
 
diff --git a/xfconfd/main.c b/xfconfd/main.c
index e7cbf9e..de076e9 100644
--- a/xfconfd/main.c
+++ b/xfconfd/main.c
@@ -158,7 +158,10 @@ main(int argc,
 
 g_set_application_name(_(Xfce Configuration Daemon));
 g_set_prgname(G_LOG_DOMAIN);
+
+#ifn GLIB_CHECK_VERSION(2,36,0)
 g_type_init();
+#endif
 
 opt_ctx = g_option_context_new(NULL);
 g_option_context_set_translation_domain(opt_ctx, PACKAGE);
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfconf:master Fix previous commit.

2013-07-11 Thread Nick Schermer
Updating branch refs/heads/master
 to 455fe498dd1aa54a9321dd38f04c1c76ad1ee5cc (commit)
   from 5719a34aad35eb1e91c595006c11d7b7978a0488 (commit)

commit 455fe498dd1aa54a9321dd38f04c1c76ad1ee5cc
Author: Nick Schermer n...@xfce.org
Date:   Thu Jul 11 22:35:36 2013 +0200

Fix previous commit.

 xfconf-query/main.c |2 +-
 xfconf/xfconf.c |2 +-
 xfconfd/main.c  |2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/xfconf-query/main.c b/xfconf-query/main.c
index 95c9200..422743e 100644
--- a/xfconf-query/main.c
+++ b/xfconf-query/main.c
@@ -240,7 +240,7 @@ main(int argc, char **argv)
 #endif
 xfce_textdomain (GETTEXT_PACKAGE, LOCALEDIR, UTF-8);
 
-#ifn GLIB_CHECK_VERSION(2,36,0)
+#if !GLIB_CHECK_VERSION(2,36,0)
 g_type_init();
 #endif
 
diff --git a/xfconf/xfconf.c b/xfconf/xfconf.c
index f7c0a5e..53f5825 100644
--- a/xfconf/xfconf.c
+++ b/xfconf/xfconf.c
@@ -127,7 +127,7 @@ xfconf_init(GError **error)
 return TRUE;
 }
 
-#ifn GLIB_CHECK_VERSION(2,36,0)
+#if !GLIB_CHECK_VERSION(2,36,0)
 g_type_init();
 #endif
 
diff --git a/xfconfd/main.c b/xfconfd/main.c
index de076e9..4488b24 100644
--- a/xfconfd/main.c
+++ b/xfconfd/main.c
@@ -159,7 +159,7 @@ main(int argc,
 g_set_application_name(_(Xfce Configuration Daemon));
 g_set_prgname(G_LOG_DOMAIN);
 
-#ifn GLIB_CHECK_VERSION(2,36,0)
+#if !GLIB_CHECK_VERSION(2,36,0)
 g_type_init();
 #endif
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] libxfce4ui:master I18n: Update translation es (92%).

2013-07-11 Thread Transifex
Updating branch refs/heads/master
 to 60e4e090d3f1bbf7cd35acb7fe697fffe66fa1a7 (commit)
   from c509aa68a608216019998218d82a958c35474d2f (commit)

commit 60e4e090d3f1bbf7cd35acb7fe697fffe66fa1a7
Author: MC correomc2000-...@yahoo.es
Date:   Fri Jul 12 00:30:17 2013 +0200

I18n: Update translation es (92%).

151 translated messages, 13 untranslated messages.

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

 po/es.po |  112 +++---
 1 files changed, 56 insertions(+), 56 deletions(-)

diff --git a/po/es.po b/po/es.po
index 5712fae..ef61474 100644
--- a/po/es.po
+++ b/po/es.po
@@ -9,7 +9,7 @@ msgstr 
 Project-Id-Version: Libxfce4ui\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-02 22:33+0200\n
-PO-Revision-Date: 2013-07-10 15:22+\n
+PO-Revision-Date: 2013-07-11 18:04+\n
 Last-Translator: MC correomc2000-...@yahoo.es\n
 Language-Team: Spanish 
(http://www.transifex.com/projects/p/xfce/language/es/)\n
 MIME-Version: 1.0\n
@@ -20,12 +20,12 @@ msgstr 
 
 #: ../libxfce4ui/xfce-dialogs.c:98
 msgid Failed to open web browser for online documentation
-msgstr 
+msgstr Fallo al abrir el navegador web para la documentación online
 
 #: ../libxfce4ui/xfce-dialogs.c:213
 #, c-format
 msgid Do you want to read the %s manual online?
-msgstr 
+msgstr Quiere leer el manual online de %s?
 
 #: ../libxfce4ui/xfce-dialogs.c:215
 msgid Do you want to read the manual online?
@@ -39,15 +39,15 @@ msgstr Documentación Online
 msgid 
 You will be redirected to the documentation website where the help pages are
  maintained and translated.
-msgstr 
+msgstr Será redireccionado al sitio web de la documentación donde las páginas 
de ayuda son mantenidas y traducidas.
 
 #: ../libxfce4ui/xfce-dialogs.c:225
 msgid _Read Online
-msgstr 
+msgstr _Leer Online
 
 #: ../libxfce4ui/xfce-dialogs.c:237
 msgid _Always go directly to the online documentation
-msgstr 
+msgstr _Siempre ir directamente a la documentación online
 
 #: ../libxfce4ui/xfce-dialogs.c:281
 msgid Information
@@ -67,11 +67,11 @@ msgstr Pregunta
 
 #: ../libxfce4ui/xfce-sm-client.c:1424
 msgid Session management client ID
-msgstr 
+msgstr ID del cliente de gestión de sesión
 
 #: ../libxfce4ui/xfce-sm-client.c:1424
 msgid ID
-msgstr 
+msgstr ID
 
 #: ../libxfce4ui/xfce-sm-client.c:1425
 msgid Disable session management
@@ -83,17 +83,17 @@ msgstr Opciones del administrador de sesión
 
 #: ../libxfce4ui/xfce-sm-client.c:1436
 msgid Show session management options
-msgstr 
+msgstr Mostrar las opciones del administrador de sesión
 
 #: ../libxfce4ui/xfce-sm-client.c:1611
 #, c-format
 msgid Failed to connect to the session manager: %s
-msgstr 
+msgstr Falló la conexión al gestor de sesión: %s
 
 #: ../libxfce4ui/xfce-sm-client.c:1617
 #, c-format
 msgid Session manager did not return a valid client id
-msgstr 
+msgstr El gestor de sesión no devolvió un identificador de cliente válido
 
 #. print warning for user
 #: ../libxfce4ui/xfce-spawn.c:413
@@ -101,7 +101,7 @@ msgstr 
 msgid 
 Working directory \%s\ does not exist. It won't be used when spawning 
 \%s\.
-msgstr 
+msgstr El directorio de trabajo \%s\ no existe. No se usará al expandir 
\%s\.
 
 #: ../libxfce4kbd-private/xfce-shortcuts.c:53
 #, c-format
@@ -155,7 +155,7 @@ msgstr 
 #: ../libxfce4kbd-private/xfce-shortcuts.c:116
 #, c-format
 msgid Conflicting actions for %s
-msgstr 
+msgstr Acciones en conflicto para %s
 
 #: ../libxfce4kbd-private/xfce-shortcuts.c:176
 msgid This shortcut is already being used for something else.
@@ -163,7 +163,7 @@ msgstr 
 
 #: ../libxfce4kbd-private/xfce-shortcut-dialog.c:209
 msgid Window Manager Action Shortcut
-msgstr 
+msgstr Atajo de acción del gestor de ventanas
 
 #. TRANSLATORS: this string will be used to create an explanation for
 #. * the user in a following string
@@ -198,7 +198,7 @@ msgstr Atajo:
 #: ../libxfce4kbd-private/xfce-shortcut-dialog.c:296
 #: ../libxfce4kbd-private/xfce-shortcut-dialog.c:475
 msgid No keys pressed yet, proceed.
-msgstr 
+msgstr No hay teclas presionadas, proceder.
 
 #: ../libxfce4kbd-private/xfce-shortcut-dialog.c:378
 msgid Could not grab the keyboard.
@@ -230,15 +230,15 @@ msgstr Cancelar
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:42
 msgid Cycle windows
-msgstr 
+msgstr Seleccionar ventanas cíclicamente
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:43
 msgid Cycle windows (Reverse)
-msgstr 
+msgstr Seleccionar ventanas cíclicamente (inversamente)
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:44
 msgid Switch window for same application
-msgstr 
+msgstr Cambiar la ventana para la misma aplicación
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:45
 msgid Switch application
@@ -274,11 +274,11 @@ msgstr Redimensionar ventana
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:53
 msgid Shade window
-msgstr 
+msgstr Enrollar ventana
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:54
 msgid Stick window
-msgstr