[Xfce4-commits] parole:bluesabre/gtk3 Fix spacing on plugins dialog

2013-09-08 Thread Sean Davis
Updating branch refs/heads/bluesabre/gtk3
 to c27b3c4d9b4ebb243a6a074a148ec32d7d9f5502 (commit)
   from 9d6f4185744a9bf5bab3f2b9c7052031e3571ed8 (commit)

commit c27b3c4d9b4ebb243a6a074a148ec32d7d9f5502
Author: Sean Davis smd.seanda...@gmail.com
Date:   Sun Sep 8 07:38:39 2013 -0400

Fix spacing on plugins dialog

 data/interfaces/plugins.ui |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/data/interfaces/plugins.ui b/data/interfaces/plugins.ui
index efb68f7..597353e 100644
--- a/data/interfaces/plugins.ui
+++ b/data/interfaces/plugins.ui
@@ -4,7 +4,6 @@
   !-- interface-requires libxfce4ui 4.5 --
   object class=XfceTitledDialog id=dialog
 property name=can_focusFalse/property
-property name=border_width5/property
 property name=title translatable=yesParole Plugins/property
 property name=default_width600/property
 property name=default_height300/property
@@ -53,6 +52,7 @@
   object class=GtkBox id=box1
 property name=visibleTrue/property
 property name=can_focusFalse/property
+property name=border_width5/property
 property name=spacing10/property
 child
   object class=GtkScrolledWindow id=scrolledwindow1
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] parole:bluesabre/gtk3 Fix null to gchararray in save-playlist startup

2013-09-08 Thread Sean Davis
Updating branch refs/heads/bluesabre/gtk3
 to 73567b11927e9afc90d64e479eccc2603978ce4a (commit)
   from c27b3c4d9b4ebb243a6a074a148ec32d7d9f5502 (commit)

commit 73567b11927e9afc90d64e479eccc2603978ce4a
Author: Sean Davis smd.seanda...@gmail.com
Date:   Sun Sep 8 08:22:00 2013 -0400

Fix null to gchararray in save-playlist startup

 data/interfaces/save-playlist.ui |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/data/interfaces/save-playlist.ui b/data/interfaces/save-playlist.ui
index 98b6bd7..35ab6cd 100644
--- a/data/interfaces/save-playlist.ui
+++ b/data/interfaces/save-playlist.ui
@@ -133,7 +133,7 @@
 data
   row
 col id=0 translatable=yesBy Extension/col
-col id=1 translatable=yes/
+col id=1 /col
 col id=20/col
   /row
 /data
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] parole:bluesabre/gtk3 Fix errors displayed with save-playlist dialog

2013-09-08 Thread Sean Davis
Updating branch refs/heads/bluesabre/gtk3
 to 8c440ac6f3f1a9740ba2f2379fd18fa19844b1f8 (commit)
   from 73567b11927e9afc90d64e479eccc2603978ce4a (commit)

commit 8c440ac6f3f1a9740ba2f2379fd18fa19844b1f8
Author: Sean Davis smd.seanda...@gmail.com
Date:   Sun Sep 8 10:12:17 2013 -0400

Fix errors displayed with save-playlist dialog

 data/interfaces/save-playlist.ui |6 +--
 src/parole-medialist.c   |  107 --
 2 files changed, 58 insertions(+), 55 deletions(-)

diff --git a/data/interfaces/save-playlist.ui b/data/interfaces/save-playlist.ui
index 35ab6cd..259fabe 100644
--- a/data/interfaces/save-playlist.ui
+++ b/data/interfaces/save-playlist.ui
@@ -25,7 +25,6 @@
 property name=can_focusTrue/property
 property name=receives_defaultFalse/property
 property name=use_stockTrue/property
-signal name=clicked 
handler=parole_media_list_close_save_dialog_cb swapped=no/
   /object
   packing
 property name=expandFalse/property
@@ -42,7 +41,6 @@
 property name=has_defaultTrue/property
 property name=receives_defaultTrue/property
 property name=use_stockTrue/property
-signal name=clicked 
handler=parole_media_list_save_playlist_cb swapped=no/
   /object
   packing
 property name=expandFalse/property
@@ -117,8 +115,8 @@
   /object
 /child
 action-widgets
-  action-widget response=0button1/action-widget
-  action-widget response=0button2/action-widget
+  action-widget response=-6button1/action-widget
+  action-widget response=-3button2/action-widget
 /action-widgets
   /object
   object class=GtkListStore id=liststore
diff --git a/src/parole-medialist.c b/src/parole-medialist.c
index 4f62e1e..2acc4bc 100644
--- a/src/parole-medialist.c
+++ b/src/parole-medialist.c
@@ -64,7 +64,7 @@ typedef struct
 GtkWidget *chooser;
 GtkTreeSelection *sel;
 ParoleMediaList *list;
-
+gboolean closing;
 } ParolePlaylistSave;
 
 /* Playlist filetypes */
@@ -147,9 +147,6 @@ gbooleanparole_media_list_key_press 
(GtkWidget *widget,
 void
 parole_media_list_format_cursor_changed_cb  (GtkTreeView *view,
  ParolePlaylistSave *data);
-
-voidparole_media_list_close_save_dialog_cb (GtkButton *button,
-ParolePlaylistSave *data);
 
 voidparole_media_list_save_playlist_cb (GtkButton *button,
 ParolePlaylistSave *data);
@@ -580,12 +577,6 @@ parole_media_list_shuffle_toggled_cb (GtkToggleToolButton 
*button, ParoleMediaLi
 g_signal_emit (G_OBJECT (list), signals [SHUFFLE_TOGGLED], 0, toggled);
 }
 
-void parole_media_list_close_save_dialog_cb (GtkButton *button, 
ParolePlaylistSave *data)
-{
-gtk_widget_destroy (GTK_WIDGET (data-chooser));
-g_free (data);
-}
-
 /**
  * parole_media_list_get_first_selected_row:
  * @list: a #ParoleMediaList
@@ -650,53 +641,61 @@ parole_media_list_get_first_selected_file 
(ParoleMediaList *list)
 return file;
 }
 
-/* Callback to save the current playlist */
-void parole_media_list_save_playlist_cb (GtkButton *button, ParolePlaylistSave 
*data)
+static void
+parole_media_list_save_playlist_response_cb(GtkDialog *dialog,
+gint response_id,
+ParolePlaylistSave *data)
 {
-ParolePlFormat format = PAROLE_PL_FORMAT_UNKNOWN;
-GSList *list = NULL;
-GtkTreeModel *model;
-GtkTreeIter iter;
-gchar *filename;
-gchar *dirname;
+gchar *filename = NULL;
+gchar *dirname = NULL;
 
-filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER 
(data-chooser));
-dirname = g_path_get_dirname (filename);
-
-if ( gtk_tree_selection_get_selected (data-sel, model, iter ) )
+if (response_id == GTK_RESPONSE_ACCEPT)
 {
-gtk_tree_model_get (model, iter, 2, format, -1);
-}
-
-if ( g_access (dirname, W_OK) == -1 )
-{
-gchar *msg;
-msg = g_strdup_printf (%s %s, dirname, _(Permission denied));
-parole_dialog_error (GTK_WINDOW (gtk_widget_get_toplevel 
(data-list-priv-view)),
- _(Error saving playlist file),
- msg);
-g_free (msg);
-goto out;
-}
-
-if ( format == PAROLE_PL_FORMAT_UNKNOWN )
-{
-format = parole_pl_parser_guess_format_from_extension (filename);
-if ( format == PAROLE_PL_FORMAT_UNKNOWN )
+ParolePlFormat format = PAROLE_PL_FORMAT_UNKNOWN;
+GSList *list = NULL;
+GtkTreeModel *model;
+GtkTreeIter 

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

2013-09-08 Thread Transifex
Updating branch refs/heads/master
 to 68972555fc1fcafddbc2a41db8c49901c5dee0b4 (commit)
   from 8e68d1abed9caade3220695fb176e5c0991e2497 (commit)

commit 68972555fc1fcafddbc2a41db8c49901c5dee0b4
Author: Karim Oulad Chalha herr.linu...@gmail.com
Date:   Sun Sep 8 18:30:35 2013 +0200

I18n: Update translation ar (100%).

44 translated messages.

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

 po/ar.po |  113 ++
 1 file changed, 32 insertions(+), 81 deletions(-)

diff --git a/po/ar.po b/po/ar.po
index d184f3a..d4497b4 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -1,26 +1,25 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# mohammad malh...@gmail.com, 2012.
-# محمد الحرقان malh...@gmail.com, 2012.
-# كريم أولاد الشلحة herr.linu...@gmail.com, 2013.
+# 
+# Translators:
+# Karim Oulad Chalha herr.linu...@gmail.com, 2013
+# محمد الحرقان malh...@gmail.com, 2012
+# Karim Oulad Chalha herr.linu...@gmail.com, 2013
+# محمد الحرقان malh...@gmail.com, 2012
 msgid 
 msgstr 
-Project-Id-Version: tumbler\n
+Project-Id-Version: Tumbler\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2013-02-02 07:00+\n
-PO-Revision-Date: 2013-02-03 11:58+0100\n
-Last-Translator: كريم أولاد الشلحة herr.linu...@gmail.com\n
-Language-Team: فريق تعريب إكسفس\n
-Language: ar\n
+POT-Creation-Date: 2013-07-02 22:38+0200\n
+PO-Revision-Date: 2013-09-08 13:14+\n
+Last-Translator: Karim Oulad Chalha herr.linu...@gmail.com\n
+Language-Team: Arabic 
(http://www.transifex.com/projects/p/xfce/language/ar/)\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
-Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100=3 
- n%100=10 ? 3 : n%100=11 ? 4 : 5;\n
-X-Generator: Virtaal 0.7.1\n
-X-Poedit-Language: Arabic\n
-X-Poedit-Country: MOROCCO\n
+Language: ar\n
+Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100=3  
n%100=10 ? 3 : n%100=11  n%100=99 ? 4 : 5;\n
 
 #: ../tumblerd/tumbler-cache-service.c:413
 #, c-format
@@ -71,8 +70,7 @@ msgstr قسم مشوه \%s\ في الملف \%s\: %s
 msgid 
 Malformed section \%s\ in file \%s\: Mismatch between section name and 
 UriScheme/MimeType
-msgstr 
-قسم تالف \%s\ في الملف \%s\: عدم تطابق إسم القسم و UriScheme/MimeType
+msgstr قسم تالف \%s\ في الملف \%s\: عدم تطابق إسم القسم و 
UriScheme/MimeType
 
 #: ../tumblerd/tumbler-manager.c:908 ../tumblerd/tumbler-manager.c:922
 #: ../tumblerd/tumbler-manager.c:936
@@ -90,32 +88,36 @@ msgstr فشل تحديد أخر مرة تم التعديل \%s\
 msgid Another thumbnailer manager is already running
 msgstr مدير مصغرات أخر يعمل حاليا
 
+#: ../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:250
+#: ../tumblerd/main.c:258
 msgid Tumbler Thumbnailing Service
 msgstr خدمة مصغرات Tumbler
 
-#: ../tumblerd/main.c:270
+#: ../tumblerd/main.c:280
 #, c-format
 msgid Failed to connect to the D-Bus session bus: %s
 msgstr فشل إتصال بجلسة D-Bus: %s
 
-#: ../tumblerd/main.c:353
+#: ../tumblerd/main.c:363
 #, c-format
 msgid Failed to load specialized thumbnailers into the registry: %s
 msgstr فشل تحميل مصغرات المتخصصة داخل السجل: %s
 
-#: ../tumblerd/main.c:365
+#: ../tumblerd/main.c:375
 #, c-format
 msgid Failed to start the thumbnail cache service: %s
 msgstr فشل بدء خدمة مصغرات المخباة: %s
 
-#: ../tumblerd/main.c:375
+#: ../tumblerd/main.c:385
 #, c-format
 msgid Failed to start the thumbnailer manager: %s
 msgstr فشل بدء مدير المصغرات: %s
 
-#: ../tumblerd/main.c:385
+#: ../tumblerd/main.c:395
 #, c-format
 msgid Failed to start the thumbnailer service: %s
 msgstr فشل بدء خدمة مصغرات: %s
@@ -171,27 +173,27 @@ msgstr فشل تحميل الملحق \%s\: %s
 msgid Version mismatch: %s
 msgstr عدم تطابق الإصدار: %s
 
-#: ../plugins/cover-thumbnailer/cover-thumbnailer.c:391
+#: ../plugins/cover-thumbnailer/cover-thumbnailer.c:394
 #, c-format
 msgid Failed to load the poster image \%s\
 msgstr فشل تحميل صورة poster \%s\
 
-#: ../plugins/cover-thumbnailer/cover-thumbnailer.c:427
+#: ../plugins/cover-thumbnailer/cover-thumbnailer.c:430
 #, c-format
 msgid Failed to load the metadata from \%s\
 msgstr فشل تحميل البيانات الوصفية من \%s\
 
-#: ../plugins/cover-thumbnailer/cover-thumbnailer.c:623
+#: ../plugins/cover-thumbnailer/cover-thumbnailer.c:626
 msgid 
 Invalid API key, you must be granted a valid key. The Movie DB backend will 
 be disabled.
 msgstr مفتاح واجهة برمجة التطبيقات غبر سليم, يجب عليك ضمان مفتاح سليم. قاعدة 
بيانات الفلم الحالي سيتم تعطيلها.
 
-#: ../plugins/cover-thumbnailer/cover-thumbnailer.c:631
+#: ../plugins/cover-thumbnailer/cover-thumbnailer.c:634
 msgid No poster key found in metadata
 msgstr لم يتم العثور على مفتاح poster 

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

2013-09-08 Thread Transifex
Updating branch refs/heads/master
 to f33b95c2131645d07c59a8a6b632bea9599a88e9 (commit)
   from c76c60a35f47afa930125521ee8903ad6dce9e6e (commit)

commit f33b95c2131645d07c59a8a6b632bea9599a88e9
Author: Karim Oulad Chalha herr.linu...@gmail.com
Date:   Sun Sep 8 18:30:37 2013 +0200

I18n: Update translation ar (100%).

69 translated messages.

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

 po/ar.po |  345 +++---
 1 file changed, 126 insertions(+), 219 deletions(-)

diff --git a/po/ar.po b/po/ar.po
index 0c0818e..91beea8 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -1,58 +1,61 @@
-# Arabeyes Translation  Documentation Team http://arabeyes.org
-# Hakeem Dimashq 2007.
-# محمد الحرقان malh...@gmail.com, 2012.
-# كريم أولاد الشلحة herr.linu...@gmail.com, 2013.
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# Karim Oulad Chalha herr.linu...@gmail.com, 2013
+# Karim Oulad Chalha herr.linu...@gmail.com, 2013
+# محمد الحرقان malh...@gmail.com, 2012
 msgid 
 msgstr 
-Project-Id-Version: xfce4-appfinder\n
+Project-Id-Version: Xfce4-appfinder\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2012-11-18 01:30+\n
-PO-Revision-Date: 2013-02-03 11:59+0100\n
-Last-Translator: كريم أولاد الشلحة herr.linu...@gmail.com\n
-Language-Team: فريق تعريب إكسفس\n
-Language: ar\n
+POT-Creation-Date: 2013-07-29 00:30+0200\n
+PO-Revision-Date: 2013-09-08 13:17+\n
+Last-Translator: Karim Oulad Chalha herr.linu...@gmail.com\n
+Language-Team: Arabic 
(http://www.transifex.com/projects/p/xfce/language/ar/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100=3 
- n%100=10 ? 3 : n%100=11 ? 4 : 5;\n
-X-Generator: Virtaal 0.7.1\n
-X-Poedit-Language: Arabic\n
-X-Poedit-SourceCharset: utf-8\n
-X-Poedit-Country: Morocco\n
+Language: ar\n
+Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100=3  
n%100=10 ? 3 : n%100=11  n%100=99 ? 4 : 5;\n
 
 #: ../src/appfinder-category-model.c:146
 msgid All Applications
 msgstr كل التطبيقات
 
-#: ../src/appfinder-model.c:545
+#: ../src/appfinder-model.c:575
 msgid Name
 msgstr إسم
 
-#: ../src/appfinder-model.c:546
+#: ../src/appfinder-model.c:576
 msgid Comment
 msgstr تعليق
 
-#: ../src/appfinder-model.c:547
+#: ../src/appfinder-model.c:577
 msgid Command
 msgstr أمر
 
-#: ../src/appfinder-model.c:548
+#: ../src/appfinder-model.c:578
 msgid Categories
 msgstr أصناف
 
-#: ../src/appfinder-model.c:549
+#: ../src/appfinder-model.c:579
 msgid Filename
 msgstr إسم الملف
 
-#: ../src/appfinder-model.c:1829
+#: ../src/appfinder-model.c:2100
 msgid Application has no command
 msgstr التطبيق لا يتوفر على أمر
 
-#: ../src/appfinder-model.c:2153
+#: ../src/appfinder-model.c:2519
 msgid Commands History
 msgstr تاريخ الاوامر
 
+#: ../src/appfinder-model.c:2543
+msgid Bookmarks
+msgstr علامات
+
 #: ../src/appfinder-preferences.c:219
 msgid C_lear
 msgstr مح_و
@@ -74,241 +77,232 @@ 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 إطلاق
 
-#: ../src/appfinder-window.c:826
+#: ../src/appfinder-window.c:880
 msgid Failed to launch desktop item editor
 msgstr فشل إطلاق محرر عنصر سطح المكتب
 
-#: ../src/appfinder-window.c:852
+#: ../src/appfinder-window.c:906
 msgid 
 This will permanently remove the custom desktop file from your home 
 directory.
 msgstr هذا سيحذف ملف سطح المكتب المخصص من مجلد المنزل نهائيا.
 
-#: ../src/appfinder-window.c:853
+#: ../src/appfinder-window.c:907
 #, c-format
 msgid Are you sure you want to revert \%s\?
 msgstr متاكد أنك تريد إرجاع \%s\؟
 
-#: ../src/appfinder-window.c:863
+#: ../src/appfinder-window.c:917
 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:950
 #, 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\.
+msgstr لإلغاء إخفاء العنصر يجب حذف ملف سطح المكتب يدويا من \%s\ أو 

[Xfce4-commits] garcon:master I18n: Update translation ar (100%).

2013-09-08 Thread Transifex
Updating branch refs/heads/master
 to d4537d6ab5b9d5346f484c31f59ce5b92c4eb015 (commit)
   from 21a576a0a5d791a9eab9741d2c85c8095bcf7c21 (commit)

commit d4537d6ab5b9d5346f484c31f59ce5b92c4eb015
Author: Karim Oulad Chalha herr.linu...@gmail.com
Date:   Sun Sep 8 18:30:12 2013 +0200

I18n: Update translation ar (100%).

34 translated messages.

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

 po/ar.po |   88 +++---
 1 file changed, 44 insertions(+), 44 deletions(-)

diff --git a/po/ar.po b/po/ar.po
index f2fdb33..dbcbccb 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -1,24 +1,23 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# كريم أولاد الشلحة herr.linu...@gmail.com, 2013.
+# 
+# Translators:
+# Karim Oulad Chalha herr.linu...@gmail.com, 2013
+# Karim Oulad Chalha herr.linu...@gmail.com, 2013
 msgid 
 msgstr 
 Project-Id-Version: Garcon\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2012-01-24 21:12+\n
-PO-Revision-Date: 2013-02-03 11:31+0100\n
-Last-Translator: كريم أولاد الشلحة herr.linu...@gmail.com\n
-Language-Team: فريق تعريب إكسفس\n
-Language: ar\n
+POT-Creation-Date: 2013-08-03 00:30+0200\n
+PO-Revision-Date: 2013-09-08 13:20+\n
+Last-Translator: Karim Oulad Chalha herr.linu...@gmail.com\n
+Language-Team: Arabic 
(http://www.transifex.com/projects/p/xfce/language/ar/)\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
-Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100=3 
- n%100=10 ? 3 : n%100=11 ? 4 : 5;\n
-X-Generator: Virtaal 0.7.1\n
-X-Poedit-Language: Arabic\n
-X-Poedit-Country: MOROCCO\n
+Language: ar\n
+Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100=3  
n%100=10 ? 3 : n%100=11  n%100=99 ? 4 : 5;\n
 
 #: ../data/xfce/xfce-accessories.directory.in.h:1
 msgid Accessories
@@ -69,21 +68,21 @@ msgid Settings for several hardware devices
 msgstr إعدادات لمختلف أجهزة العتاد
 
 #: ../data/xfce/xfce-multimedia.directory.in.h:1
-msgid Audio and video players and editors
-msgstr مشغلات ومحررات الصوت والفيديو
-
-#: ../data/xfce/xfce-multimedia.directory.in.h:2
 msgid Multimedia
 msgstr وسائط المتعددة
 
-#: ../data/xfce/xfce-network.directory.in.h:1
-msgid Applications for Internet access
-msgstr تطبيقات للدخول إلى الإنترنت
+#: ../data/xfce/xfce-multimedia.directory.in.h:2
+msgid Audio and video players and editors
+msgstr مشغلات ومحررات الصوت والفيديو
 
-#: ../data/xfce/xfce-network.directory.in.h:2
+#: ../data/xfce/xfce-network.directory.in.h:1
 msgid Internet
 msgstr إنترنت
 
+#: ../data/xfce/xfce-network.directory.in.h:2
+msgid Applications for Internet access
+msgstr تطبيقات للدخول إلى الإنترنت
+
 #: ../data/xfce/xfce-office.directory.in.h:1
 msgid Office
 msgstr مكتب
@@ -93,13 +92,13 @@ msgid Office and productivity applications
 msgstr تطبيقات المكتب والإنتاج
 
 #: ../data/xfce/xfce-other.directory.in.h:1
-msgid Applications that don't fit into other categories
-msgstr التطبيقات التي لا تنتمي إلى أي فئة أخرى
-
-#: ../data/xfce/xfce-other.directory.in.h:2
 msgid Other
 msgstr أخرى
 
+#: ../data/xfce/xfce-other.directory.in.h:2
+msgid Applications that don't fit into other categories
+msgstr التطبيقات التي لا تنتمي إلى أي فئة أخرى
+
 #: ../data/xfce/xfce-personal.directory.in.h:1
 msgid Personal
 msgstr شخصي
@@ -109,21 +108,21 @@ msgid Personal settings
 msgstr إعدادات الشخصية
 
 #: ../data/xfce/xfce-screensavers.directory.in.h:1
-msgid Screensaver applets
-msgstr بريمجات حافظة الشاشة
-
-#: ../data/xfce/xfce-screensavers.directory.in.h:2
 msgid Screensavers
 msgstr حافظات الشاشة
 
-#: ../data/xfce/xfce-settings.directory.in.h:1
-msgid Desktop and system settings applications
-msgstr تطبيقات إعدادات سطح المكتب والنظام
+#: ../data/xfce/xfce-screensavers.directory.in.h:2
+msgid Screensaver applets
+msgstr بريمجات حافظة الشاشة
 
-#: ../data/xfce/xfce-settings.directory.in.h:2
+#: ../data/xfce/xfce-settings.directory.in.h:1
 msgid Settings
 msgstr الإعدادات
 
+#: ../data/xfce/xfce-settings.directory.in.h:2
+msgid Desktop and system settings applications
+msgstr تطبيقات إعدادات سطح المكتب والنظام
+
 #: ../data/xfce/xfce-system.directory.in.h:1
 msgid System
 msgstr النّظام
@@ -132,29 +131,30 @@ msgstr النّظام
 msgid System tools and utilities
 msgstr أدوات النظام
 
-#: ../garcon/garcon-menu.c:706
+#: ../garcon/garcon-menu.c:702
 #, c-format
 msgid File \%s\ not found
 msgstr لم بتم العثور على الملف \%s\
 
-#: ../garcon/garcon-menu-parser.c:280
+#: ../garcon/garcon-menu-parser.c:276
 #, c-format
 msgid Could not load menu file data from %s: %s
 msgstr لا يمكن تحميل ملف قائمة البيانات من %s: %s
 
-#: ../garcon/garcon-menu-parser.c:287
+#: ../garcon/garcon-menu-parser.c:283
 #, c-format
 msgid Could not load menu file data from %s
 msgstr لا يمكن تحميل ملف قائمة 

[Xfce4-commits] xfce4-power-manager:master I18n: Update translation ar (79%).

2013-09-08 Thread Transifex
Updating branch refs/heads/master
 to ce512ec26f267a854238a6a51e08bb0f453ef951 (commit)
   from 04addb68842443504d193a481ba4cc74d9246ea5 (commit)

commit ce512ec26f267a854238a6a51e08bb0f453ef951
Author: Karim Oulad Chalha herr.linu...@gmail.com
Date:   Sun Sep 8 18:30:47 2013 +0200

I18n: Update translation ar (79%).

169 translated messages, 44 untranslated messages.

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

 po/ar.po |   62 +++---
 1 file changed, 31 insertions(+), 31 deletions(-)

diff --git a/po/ar.po b/po/ar.po
index bef20df..0a5e77d 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -9,7 +9,7 @@ msgstr 
 Project-Id-Version: Xfce4-power-manager\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-08-12 00:30+0200\n
-PO-Revision-Date: 2013-08-23 01:26+\n
+PO-Revision-Date: 2013-09-08 15:07+\n
 Last-Translator: Karim Oulad Chalha herr.linu...@gmail.com\n
 Language-Team: Arabic 
(http://www.transifex.com/projects/p/xfce/language/ar/)\n
 MIME-Version: 1.0\n
@@ -142,7 +142,7 @@ msgstr بديل
 
 #: ../data/interfaces/xfpm-settings.ui.h:28
 msgid Set computer inactivity sleep mode:
-msgstr 
+msgstr حدد نمط نوم الحاسوب في حالة عدم النشاط:
 
 #: ../data/interfaces/xfpm-settings.ui.h:29
 msgid Consider the computer on low power at:
@@ -263,7 +263,7 @@ msgstr إجراء الإسبات غير مسموح به
 
 #: ../settings/xfpm-settings.c:1443
 msgid When all the power sources of the computer reach this charge level
-msgstr 
+msgstr عندما تصل كل مصادر طاقة الحاسوب مستوى الشحن هذا
 
 #: ../settings/xfpm-settings.c:1546 ../settings/xfpm-settings.c:1551
 msgid General
@@ -479,11 +479,11 @@ msgstr أيون ليثيوم الفوسفات
 
 #: ../src/xfpm-power-common.c:161
 msgid Lead acid
-msgstr 
+msgstr حمض الرصاص
 
 #: ../src/xfpm-power-common.c:163
 msgid Nickel cadmium
-msgstr 
+msgstr نيكل كادميوم
 
 #: ../src/xfpm-power-common.c:165
 msgid Nickel metal hybride
@@ -557,7 +557,7 @@ msgstr يتم شحن %s
 msgid 
 %s (%i%%)\n
 %s until it is fully charged.
-msgstr 
+msgstr %s (%i%%)\n%s حتى يتم شحنها كليا.
 
 #: ../src/xfpm-battery.c:232 ../src/xfpm-battery.c:268
 #, c-format
@@ -938,106 +938,106 @@ msgstr 
 #. TRANSLATORS: interrupts when a task gets moved from one core to another
 #: ../src/xfpm-power-info.c:248
 msgid Rescheduling interrupts
-msgstr 
+msgstr إعادة جدولة الانقطاعات
 
 #: ../src/xfpm-power-info.c:331
 msgid Attribute
-msgstr 
+msgstr ميزة
 
 #: ../src/xfpm-power-info.c:338
 msgid Value
-msgstr 
+msgstr قيمة
 
 #: ../src/xfpm-power-info.c:348
 msgid Device
-msgstr 
+msgstr جهاز
 
 #: ../src/xfpm-power-info.c:363 ../src/xfpm-power-info.c:739
 msgid Type
-msgstr 
+msgstr نوع
 
 #: ../src/xfpm-power-info.c:375
 msgid PowerSupply
-msgstr 
+msgstr إمدادات الطاقة
 
 #: ../src/xfpm-power-info.c:393
 msgid Model
-msgstr 
+msgstr نموذج
 
 #: ../src/xfpm-power-info.c:407
 msgid Technology
-msgstr 
+msgstr تكنولوجيا
 
 #. TRANSLATORS: Unit here is What hour
 #: ../src/xfpm-power-info.c:414 ../src/xfpm-power-info.c:428
 #: ../src/xfpm-power-info.c:442
 msgid Wh
-msgstr 
+msgstr Wh
 
 #: ../src/xfpm-power-info.c:420
 msgid Energy full design
-msgstr 
+msgstr رسم للطاقة المملوءة
 
 #: ../src/xfpm-power-info.c:434
 msgid Energy full
-msgstr 
+msgstr الطاقة مملوءة
 
 #: ../src/xfpm-power-info.c:448
 msgid Energy empty
-msgstr 
+msgstr الطاقة فارغة
 
 #. TRANSLATORS: Unit here is volt
 #: ../src/xfpm-power-info.c:456
 msgid V
-msgstr 
+msgstr V
 
 #: ../src/xfpm-power-info.c:461
 msgid Voltage
-msgstr 
+msgstr الجهد
 
 #: ../src/xfpm-power-info.c:478
 msgid Vendor
-msgstr 
+msgstr بائع
 
 #: ../src/xfpm-power-info.c:495
 msgid Serial
-msgstr 
+msgstr تسلسلي
 
 #: ../src/xfpm-power-info.c:731
 msgid Processor
-msgstr 
+msgstr معالج
 
 #. TANSLATORS: PID, is the process id, e.g what ps x gives
 #: ../src/xfpm-power-info.c:748
 msgid PID
-msgstr 
+msgstr PID
 
 #: ../src/xfpm-power-info.c:754
 msgid Wakeups
-msgstr 
+msgstr إيقاظ
 
 #: ../src/xfpm-power-info.c:760
 msgid Command
-msgstr 
+msgstr أمر
 
 #: ../src/xfpm-power-info.c:766
 msgid Details
-msgstr 
+msgstr تفاصيل
 
 #: ../src/xfce4-power-manager.desktop.in.h:2
 msgid Power management for the Xfce desktop
-msgstr 
+msgstr مدير الطاقة لسطح مكتب إكسفس
 
 #: ../panel-plugins/brightness/brightness-button.c:180
 #: ../panel-plugins/brightness/xfce4-brightness-plugin.desktop.in.in.h:2
 msgid Control your LCD brightness
-msgstr 
+msgstr تحكم بسطوع شاشة الكريستال السائل
 
 #: ../panel-plugins/brightness/brightness-button.c:182
 msgid No device found
-msgstr 
+msgstr لم يتم العثور على أي جهاز
 
 #: ../panel-plugins/brightness/brightness-button.c:649
 #: ../panel-plugins/brightness/xfce4-brightness-plugin.desktop.in.in.h:1
 msgid Brightness plugin
-msgstr 
+msgstr ملحق السطوع
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] parole:bluesabre/gtk3 Fix settings-dialog crashing on close

2013-09-08 Thread Sean Davis
Updating branch refs/heads/bluesabre/gtk3
 to 0e4103763f45c0930d8d12664713f7ae3d72442c (commit)
   from 8c440ac6f3f1a9740ba2f2379fd18fa19844b1f8 (commit)

commit 0e4103763f45c0930d8d12664713f7ae3d72442c
Author: Sean Davis smd.seanda...@gmail.com
Date:   Sun Sep 8 13:24:58 2013 -0400

Fix settings-dialog crashing on close

 src/parole-conf-dialog.c |5 +++--
 src/parole-player.c  |9 -
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/parole-conf-dialog.c b/src/parole-conf-dialog.c
index ed0741b..27bf5df 100644
--- a/src/parole-conf-dialog.c
+++ b/src/parole-conf-dialog.c
@@ -136,8 +136,7 @@ G_DEFINE_TYPE (ParoleConfDialog, parole_conf_dialog, 
G_TYPE_OBJECT)
 static void 
 parole_conf_dialog_destroy (GtkWidget *widget, ParoleConfDialog *self)
 {
-gtk_widget_destroy (widget);
-g_object_unref (self);
+gtk_widget_hide(widget);
 }
 
 /* Replace the playlist with newly opened files */
@@ -640,6 +639,8 @@ void parole_conf_dialog_open (ParoleConfDialog *self, 
GtkWidget *parent)
 switch_widget = GTK_WIDGET (gtk_builder_get_object (builder, 
enable-subtitle));
 g_signal_connect(G_OBJECT(switch_widget), notify::active, 
G_CALLBACK(parole_conf_dialog_enable_subtitle_changed_cb), self);
 
+g_signal_connect(G_OBJECT(dialog), delete-event, 
G_CALLBACK(gtk_widget_hide_on_delete), NULL);
+
 gtk_builder_connect_signals (builder, self);
 
 g_object_unref (builder);
diff --git a/src/parole-player.c b/src/parole-player.c
index f1b274b..9fe2f20 100644
--- a/src/parole-player.c
+++ b/src/parole-player.c
@@ -318,6 +318,8 @@ struct ParolePlayerPrivate
 ParoleButton   *button;
 #endif
 
+ParoleConfDialog   *settings_dialog;
+
 XfceSMClient   *sm_client;
 gchar  *client_id;
 
@@ -2188,11 +2190,7 @@ parole_player_media_menu_select_cb (GtkMenuItem *widget, 
ParolePlayer *player)
 
 void parole_player_open_preferences_cb  (GtkWidget *widget, ParolePlayer 
*player)
 {
-ParoleConfDialog *dialog;
-
-dialog = parole_conf_dialog_new ();
-
-parole_conf_dialog_open (dialog, player-priv-window);
+parole_conf_dialog_open (player-priv-settings_dialog, 
player-priv-window);
 }
 
 void
@@ -2914,6 +2912,7 @@ parole_player_init (ParolePlayer *player)
 builder = parole_builder_get_main_interface ();
 
 player-priv-conf = parole_conf_new ();
+player-priv-settings_dialog = parole_conf_dialog_new();
 
 g_signal_connect_swapped (player-priv-conf, notify::reset-saver,
 G_CALLBACK (parole_player_reset_saver_changed_cb), player);
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] www:master I18n: Update translation pt (68%).

2013-09-08 Thread Transifex
Updating branch refs/heads/master
 to 54443a3d520163ac84bc7cadb90f26c2d42df238 (commit)
   from 253c09ad14dcee7d3af6ebb5155cba8085c6f6c3 (commit)

commit 54443a3d520163ac84bc7cadb90f26c2d42df238
Author: Sérgio Marques smarque...@gmail.com
Date:   Mon Sep 9 00:32:05 2013 +0200

I18n: Update translation pt (68%).

407 translated messages, 184 untranslated messages.

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

 lib/po/pt.po |   66 +-
 1 file changed, 33 insertions(+), 33 deletions(-)

diff --git a/lib/po/pt.po b/lib/po/pt.po
index 1774f54..3d05119 100644
--- a/lib/po/pt.po
+++ b/lib/po/pt.po
@@ -10,8 +10,8 @@ msgstr 
 Project-Id-Version: Xfce Websites\n
 Report-Msgid-Bugs-To: https://bugzilla.xfce.org\n;
 POT-Creation-Date: 2013-07-03 22:08+0200\n
-PO-Revision-Date: 2013-09-02 14:46+\n
-Last-Translator: Mariana Prazeres mariana1...@gmail.com\n
+PO-Revision-Date: 2013-09-08 21:27+\n
+Last-Translator: Sérgio Marques smarque...@gmail.com\n
 Language-Team: Portuguese 
(http://www.transifex.com/projects/p/xfce/language/pt/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -212,13 +212,13 @@ msgid 
 doesn't exist yet. One of the developers or translation coordinators will 
 approve (or decline) your request. All other Xfce related projects outsource
  the permissions of the Xfce hub.
-msgstr 
+msgstr Aceda ao a href=\https://www.transifex.com/projects/p/xfce/\;hub de 
traduções do Xfce/a e solicite a sua integração numa equipa ou ou m novo 
idioma caso o seu idioma ainda não exista. Posteriormente, um dos programadores 
ou coordenadores do idioma aprovará (ou recusará) o seu pedido. Todos os 
projetos relacionados com o Xfce obtêm as permissões do Xfce hub.
 
 #: getinvolved/translation.php:27
 msgid 
 Now wait patently. If it takes too long, leave a message on the translation 
 mailing list.
-msgstr 
+msgstr Agora espere um pouco. Se demorar muito tempo, escreva uma mensagem 
para a lista de correio de traduções.
 
 #: getinvolved/translation.php:32
 msgid 
@@ -227,13 +227,13 @@ msgid 
 below. Don't forget to keep in touch with the other translators in your 
 language (you can find them in the translation groups) to coordinate the 
 translation work!
-msgstr 
+msgstr Assim que tudo isto ocorrer, você deverá ter as permissões para 
submeter ou atualizar a tradução. Pode saber mais informações abaixo. Não se 
esqueça de manter o contacto com os outros tradutores do seu idioma 
(encontra-os nos grupos de tradução) para coordenarem o trabalho em equipa.
 
 #: getinvolved/translation.php:36
 msgid 
 If you think anything went wrong, ideas? Don't hesitate and send an email to
  the Xfce translation mailing list, we're always there to help you!
-msgstr 
+msgstr Se acha que algo está errado ou tem novas ideias, não hesite em enviar 
uma mensagem para a lista de correio de traduções do Xfce. Estamos sempre 
disponíveis para ajudar.
 
 #: getinvolved/translation.php:39
 msgid Team Work
@@ -254,7 +254,7 @@ msgid 
 The header of the PO files contain the field quot;Last-Translatorquot; As 
 example here is the French translation of xfce4-panel: a 
 href=\http://git.xfce.org/xfce/xfce4-panel/plain/po/fr.po\;fr.po/a.
-msgstr 
+msgstr O cabeçalho dos ficheiros PO possuem o campo 
quot;Last-Translatorquot; Aqui tem o exemplo da tradução francesa do 
xfce4-panel: a 
href=\http://git.xfce.org/xfce/xfce4-panel/plain/po/fr.po\;fr.po/a.
 
 #: getinvolved/translation.php:50
 msgid 
@@ -321,7 +321,7 @@ msgstr Utilização do Transifex
 msgid 
 You can read all about Transifex in their a 
 href=\http://support.transifex.com/\;support section/a.
-msgstr 
+msgstr Pode saber mais sobre o Transifex na a 
href=\http://support.transifex.com/\;secção de suporte/a.
 
 #: frontpage.php:15
 msgid 
@@ -447,7 +447,7 @@ msgstr 
 msgid 
 strongNOTE:/strong In order to post to these lists, you must first 
 subscribe.
-msgstr 
+msgstr strongNOTA:/strong se quiser enviar mensagens para a lista, tem 
que a subscrever.
 
 #: community/index.php:23
 msgid IRC
@@ -461,7 +461,7 @@ msgid 
 recommended that you consult the a href=\http://docs.xfce.org/\; 
 class=\external\documentation/a about your problem before asking your 
 question.
-msgstr 
+msgstr Se tiver algum problema que não consegue resolver, aceda ao canal  a 
href=\irc://irc.freenode.net/#xfce\#xfce em irc.freenode.net/a. O canal 
tem diversos utilizadores ativos. É altamente recomendável a leitura da a 
href=\http://docs.xfce.org/\; class=\external\documentação/a antes de 
colocar alguma questão.
 
 #: community/index.php:28 community/nav.php:4
 msgid Forums
@@ -488,7 +488,7 @@ msgstr O a href=\http://identi.ca/xfce\; 
class=\external\canal Xfce/a no
 
 #: community/nav.php:5
 msgid talk about Xfce in the community forums
-msgstr 
+msgstr debater o Xfce no fórum da comunidade
 
 #: community/nav.php:9
 msgid Blog
@@ -496,7 +496,7 @@ msgstr Blogue
 
 #: 

[Xfce4-commits] xfce4-mailwatch-plugin:master Change plugindir location

2013-09-08 Thread Ján Sučan
Updating branch refs/heads/master
 to a823536b0509c6f4e19bedbc92abf3a6bea30941 (commit)
   from 0370085a70db6e33201290454b966bac91d8aa1e (commit)

commit a823536b0509c6f4e19bedbc92abf3a6bea30941
Author: Ján Sučan su...@runbox.com
Date:   Mon Sep 9 00:46:56 2013 +0200

Change plugindir location

 panel-plugin/Makefile.am |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/panel-plugin/Makefile.am b/panel-plugin/Makefile.am
index d966700..0263bc7 100644
--- a/panel-plugin/Makefile.am
+++ b/panel-plugin/Makefile.am
@@ -1,7 +1,7 @@
 #
 # Mailwatch plugin
 #
-plugindir = $(libdir)/xfce4/panel-plugins
+plugindir = $(libdir)/xfce4/panel/plugins
 
 plugin_LTLIBRARIES = \
libmailwatch-plugin.la
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits