rpms/parole/devel parole-0.1.90-fix-untranslatable-strings.patch, NONE, 1.1 parole-0.1.90-set-correct-gettext-domain.patch, NONE, 1.1 parole-0.1.90-translations.patch, NONE, 1.1 parole.spec, 1.1, 1.2 parole-0.1.90-include-french-translation.patch, 1.1, NONE parole-0.1.90-include-galician-translation.patch, 1.1, NONE parole-0.1.90-include-german-translation.patch, 1.1, NONE parole-0.1.90-update-asturian-translation.patch, 1.1, NONE parole-0.1.90-update-japanese-translation.patch, 1.1, NONE

Christoph Wickert cwickert at fedoraproject.org
Thu Oct 22 17:57:44 UTC 2009


Author: cwickert

Update of /cvs/pkgs/rpms/parole/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23050

Modified Files:
	parole.spec 
Added Files:
	parole-0.1.90-fix-untranslatable-strings.patch 
	parole-0.1.90-set-correct-gettext-domain.patch 
	parole-0.1.90-translations.patch 
Removed Files:
	parole-0.1.90-include-french-translation.patch 
	parole-0.1.90-include-galician-translation.patch 
	parole-0.1.90-include-german-translation.patch 
	parole-0.1.90-update-asturian-translation.patch 
	parole-0.1.90-update-japanese-translation.patch 
Log Message:
* Thu Oct 08 2009 Christoph Wickert <cwickert at fedoraproject.org> - 0.1.90-3
- Set locale before loading the GtkBuilder interface definition for dialogs
- Translation updates


parole-0.1.90-fix-untranslatable-strings.patch:
 data/interfaces/parole.ui  |    2 +-
 data/interfaces/plugins.ui |    4 ++--
 parole/parole-statusbar.c  |    2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

--- NEW FILE parole-0.1.90-fix-untranslatable-strings.patch ---
>From 795a28c9be6e6c3556a10f0064c75de639fedf7f Mon Sep 17 00:00:00 2001
From: Ali Abdallah <ali at ali-xfce.org>
Date: Tue, 06 Oct 2009 15:54:56 +0000
Subject: Fix some untranslatable strings

---
diff --git a/data/interfaces/parole.ui b/data/interfaces/parole.ui
index 6fe1f24..6137bbf 100644
--- a/data/interfaces/parole.ui
+++ b/data/interfaces/parole.ui
@@ -38,7 +38,7 @@
                     </child>
                     <child>
                       <object class="GtkImageMenuItem" id="menu-open-location">
-                        <property name="label">_Open location</property>
+                        <property name="label" translatable="yes">_Open location</property>
                         <property name="visible">True</property>
                         <property name="use_underline">True</property>
                         <property name="image">image5</property>
diff --git a/data/interfaces/plugins.ui b/data/interfaces/plugins.ui
index 3253620..70df469 100644
--- a/data/interfaces/plugins.ui
+++ b/data/interfaces/plugins.ui
@@ -50,7 +50,7 @@
                     <child>
                       <object class="GtkTreeViewColumn" id="treeviewcolumn1">
                         <property name="resizable">True</property>
-                        <property name="title">Enabled</property>
+                        <property name="title" translatable="yes">Enabled</property>
                         <property name="clickable">True</property>
                         <child>
                           <object class="GtkCellRendererToggle" id="cellrenderertoggle">
@@ -64,7 +64,7 @@
                     </child>
                     <child>
                       <object class="GtkTreeViewColumn" id="treeviewcolumn2">
-                        <property name="title">Plugin</property>
+                        <property name="title" translatable="yes">Plugin</property>
                         <child>
                           <object class="GtkCellRendererText" id="cellrenderertext1"/>
                           <attributes>
diff --git a/parole/parole-statusbar.c b/parole/parole-statusbar.c
index b75cda5..9563b09 100644
--- a/parole/parole-statusbar.c
+++ b/parole/parole-statusbar.c
@@ -85,7 +85,7 @@ parole_statusbar_set_duration (ParoleStatusbar *bar, ParoleState state, gdouble
 	if ( bar->priv->duration != 0)
 	{
 	    text = g_strdup_printf ("%s %4.2f/%4.2f", 
-				    state == PAROLE_STATE_PAUSED ? _("Paused") : ("Playing"), position, bar->priv->duration);
+				    state == PAROLE_STATE_PAUSED ? _("Paused") : _("Playing"), position, bar->priv->duration);
 	}
 	if ( text )
 	{

parole-0.1.90-set-correct-gettext-domain.patch:
 parole-builder.c |   31 +++++++++++--------------------
 parole-builder.h |    3 ---
 2 files changed, 11 insertions(+), 23 deletions(-)

--- NEW FILE parole-0.1.90-set-correct-gettext-domain.patch ---
>From 80a358e16a7933529c70e5982bc7ad0774109580 Mon Sep 17 00:00:00 2001
From: Ali Abdallah <ali at ali-xfce.org>
Date: Wed, 21 Oct 2009 10:15:51 +0000
Subject: Set the locale before loading the GtkBuilder interface definition for the dialogs

---
diff --git a/parole/parole-builder.c b/parole/parole-builder.c
index 926144a..43179ea 100644
--- a/parole/parole-builder.c
+++ b/parole/parole-builder.c
@@ -26,6 +26,8 @@
 #include <stdlib.h>
 #include <string.h>
 
+#include <libxfce4util/libxfce4util.h>
+
 #include "interfaces/parole_ui.h"
 #include "parole-builder.h"
 
@@ -47,32 +49,21 @@ parole_builder_get_main_interface (void)
     return GTK_BUILDER (parole_builder_object);
 }
 
-GtkBuilder *parole_builder_new_from_file (const gchar *file)
-{
-    GtkBuilder *builder;
-    GError *error = NULL;
-
-    builder = gtk_builder_new ();
-    
-    gtk_builder_add_from_file (GTK_BUILDER (builder),
-			       file,
-			       &error);
-			       
-    if ( error )
-    {
-	g_critical ("%s", error->message);
-	g_error_free (error);
-    }
-    
-    return builder;
-}
-
 GtkBuilder *parole_builder_new_from_string (const gchar *ui, gsize length)
 {
     GError *error = NULL;
     GtkBuilder *builder;
     
     builder = gtk_builder_new ();
+
+    /*
+     * Set the locale before loading the GtkBuilder interface definition
+     * probably this will be fixed in libxfce4util's side so keep a version 
+     * check.
+     */
+#if LIBXFCE4UTIL_CHECK_VERSION (4, 6, 1)
+    xfce_textdomain (GETTEXT_PACKAGE, LOCALEDIR, "UTF-8");
+#endif
     
     gtk_builder_add_from_string (builder, ui, length, &error);
     
diff --git a/parole/parole-builder.h b/parole/parole-builder.h
index 4411f22..3f0cbf0 100644
--- a/parole/parole-builder.h
+++ b/parole/parole-builder.h
@@ -28,8 +28,6 @@ G_BEGIN_DECLS
 
 GtkBuilder       	       *parole_builder_get_main_interface       (void);
 
-GtkBuilder		       *parole_builder_new_from_file   		(const gchar *file);
-
 GtkBuilder		       *parole_builder_new_from_string 		(const gchar *ui,
 									 gsize length);
 
--
cgit v0.8.2.1

parole-0.1.90-translations.patch:
 LINGUAS |    2 
 ast.po  |  110 ++++-----
 ca.po   |  736 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 da.po   |  114 +++++----
 de.po   |  750 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 es.po   |  148 ++++++------
 fr.po   |  724 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 gl.po   |  720 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 id.po   |   23 +
 ja.po   |   60 +++--
 lv.po   |  731 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 nl.po   |  758 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 pt.po   |  758 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 ru.po   |  105 +++++---
 sk.po   |   59 ++--
 tr.po   |   23 +
 uk.po   |   23 +
 17 files changed, 5562 insertions(+), 282 deletions(-)

--- NEW FILE parole-0.1.90-translations.patch ---
diff -Nur parole-0.1.90.orig/po/ast.po parole-0.1.90/po/ast.po
--- parole-0.1.90.orig/po/ast.po	2009-10-06 12:11:39.000000000 +0200
+++ parole-0.1.90/po/ast.po	2009-10-22 19:41:13.000000000 +0200
@@ -7,8 +7,8 @@
 msgstr ""
 "Project-Id-Version: ast\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-10-06 10:11+0000\n"
-"PO-Revision-Date: 2009-09-03 13:51+0100\n"
+"POT-Creation-Date: 2009-10-14 19:53+0000\n"
+"PO-Revision-Date: 2009-10-20 22:22+0100\n"
 "Last-Translator: astur <malditoastur at gmail.com>\n"
 "Language-Team: Asturian <alministradores at softastur.org>\n"
 "MIME-Version: 1.0\n"
@@ -54,7 +54,8 @@
 msgid "Mute"
 msgstr "Silenciar"
 
-#: ../data/interfaces/parole.ui.h:10 ../parole/parole-player.c:1047
+#: ../data/interfaces/parole.ui.h:10
+#: ../parole/parole-player.c:1047
 #: ../parole/parole-disc-menu.c:113
 msgid "Next Chapter"
 msgstr "Siguiente Capítulu Chapter"
@@ -63,8 +64,9 @@
 msgid "None"
 msgstr "Dengún"
 
-#: ../data/interfaces/parole.ui.h:12 ../data/desktop/parole.desktop.in.in.h:1
-#: ../parole/parole-player.c:234 ../parole/parole-about.c:51
+#: ../data/interfaces/parole.ui.h:12
+#: ../data/desktop/parole.desktop.in.in.h:1
+#: ../parole/parole-about.c:52
 #: ../plugins/window-title/window-title.c:40
 msgid "Parole Media Player"
 msgstr "Parole Media Player"
@@ -73,7 +75,8 @@
 msgid "Plugins"
 msgstr "Plugins"
 
-#: ../data/interfaces/parole.ui.h:14 ../parole/parole-player.c:1059
+#: ../data/interfaces/parole.ui.h:14
+#: ../parole/parole-player.c:1059
 #: ../parole/parole-disc-menu.c:114
 msgid "Previous Chapter"
 msgstr "Capítulu Previu"
@@ -119,6 +122,10 @@
 msgstr "_Media"
 
 #: ../data/interfaces/parole.ui.h:25
+msgid "_Open location"
+msgstr "_Abrir llugar..."
+
+#: ../data/interfaces/parole.ui.h:26
 msgid "_View"
 msgstr "_Ver"
 
@@ -135,14 +142,20 @@
 msgstr "<b>Sitiu:</b>"
 
 #: ../data/interfaces/plugins.ui.h:4
-#, fuzzy
-msgid "Media Player plugins"
-msgstr "Axustes del Reproductor de Medios"
+msgid "Enabled"
+msgstr "Activáu"
 
 #: ../data/interfaces/plugins.ui.h:5
-#, fuzzy
+msgid "Media Player plugins"
+msgstr "Plugins del Reproductor de Medios"
+
+#: ../data/interfaces/plugins.ui.h:6
 msgid "Parole Plugins"
-msgstr "Preferencies de Complementos de Parole"
+msgstr "Plugins de Parole"
+
+#: ../data/interfaces/plugins.ui.h:7
+msgid "Plugin"
+msgstr "Plugin"
 
 #: ../data/interfaces/parole-settings.ui.h:1
 msgid "<b>Audio</b>"
@@ -239,42 +252,39 @@
 
 #: ../parole/main.c:185
 msgid "Play or pause if already playing"
-msgstr ""
+msgstr "Reproducir o posar"
 
 #: ../parole/main.c:186
-#, fuzzy
 msgid "Stop playing"
-msgstr "Amosar llista de reproducción"
+msgstr "Detener reproducción"
 
 #: ../parole/main.c:187
-#, fuzzy
 msgid "Next track"
 msgstr "Siguiente pista"
 
 #: ../parole/main.c:188
-#, fuzzy
 msgid "Previous track"
 msgstr "Pista previa"
 
 #: ../parole/main.c:189
 msgid "Seek forward"
-msgstr ""
+msgstr "Guetar haza alantre"
 
 #: ../parole/main.c:190
 msgid "Seek Backward"
-msgstr ""
+msgstr "Guetar haza atrás"
 
 #: ../parole/main.c:191
 msgid "Raise volume"
-msgstr ""
+msgstr "Xubir el volume"
 
 #: ../parole/main.c:192
 msgid "Lower volume"
-msgstr ""
+msgstr "Menor volume"
 
 #: ../parole/main.c:193
 msgid "Mute volume"
-msgstr ""
+msgstr "Silenciar"
 
 #: ../parole/main.c:194
 msgid "Version information"
@@ -284,27 +294,20 @@
 msgid "Media to play"
 msgstr "Mediu a reproducir"
 
-#: ../parole/main.c:231
+#: ../parole/main.c:233
 #, c-format
 msgid "Parole is already running, use -i to open a new instance\n"
 msgstr "Parole yá ta executándose, use -i p'abrir una nueva instancia\n"
 
 #: ../parole/parole-gst.c:1289
-msgid ""
-"Unable to load playbin GStreamer plugin, check your GStreamer installation"
-msgstr ""
-"Nun pudo cargase'l complementu playbin GStreamer, comprebe la so instalación "
-"de GStreamer"
+msgid "Unable to load playbin GStreamer plugin, check your GStreamer installation"
+msgstr "Nun pudo cargase'l complementu playbin GStreamer, comprebe la so instalación de GStreamer"
 
 #: ../parole/parole-gst.c:1305
-msgid ""
-"Unable to load video GStreamer plugin, check your GStreamer installation"
-msgstr ""
-"Nun pudo cargase'l complementu video GStreamer, comprebe la so instalación "
-"de GStreamer"
+msgid "Unable to load video GStreamer plugin, check your GStreamer installation"
+msgstr "Nun pudo cargase'l complementu video GStreamer, comprebe la so instalación de GStreamer"
 
 #: ../parole/parole-gst.c:1501
-#, fuzzy
 msgid "The stream is taking too much time to load"
 msgstr "El fluxu ta llevando enforma tiempu pa cargar"
 
@@ -330,11 +333,10 @@
 
 #: ../parole/parole-medialist.c:454
 msgid "Unknown playlist format, Please select a support playlist format"
-msgstr ""
-"Formatu de llista desconocíu, por favor esbille una llista con formatu "
-"sofitáu téunicamente"
+msgstr "Formatu de llista desconocíu, por favor esbille una llista con formatu sofitáu téunicamente"
 
-#: ../parole/parole-medialist.c:520 ../parole/parole-player.c:1591
+#: ../parole/parole-medialist.c:520
+#: ../parole/parole-player.c:1591
 msgid "Playlist"
 msgstr "Llista de reproducción"
 
@@ -377,14 +379,16 @@
 #.
 #. * Next chapter menu item
 #.
-#: ../parole/parole-player.c:1047 ../parole/parole-disc-menu.c:122
+#: ../parole/parole-player.c:1047
+#: ../parole/parole-disc-menu.c:122
 msgid "Next Track"
 msgstr "Siguiente pista"
 
 #.
 #. * Previous chapter menu item
 #.
-#: ../parole/parole-player.c:1059 ../parole/parole-disc-menu.c:123
+#: ../parole/parole-player.c:1059
+#: ../parole/parole-disc-menu.c:123
 msgid "Previous Track"
 msgstr "Pista previa"
[...6621 lines suppressed...]
 msgid "Clear history"
@@ -617,12 +611,12 @@
 #: ../parole/parole-disc-menu.c:194
 #, c-format
 msgid "Track %i"
-msgstr ""
+msgstr "Skladba %i"
 
 #: ../parole/parole-plugins-manager.c:227
 #: ../parole/parole-plugins-manager.c:285
 msgid "Visit Website"
-msgstr ""
+msgstr "Navštíviť webovú stránku"
 
 #: ../plugins/properties/stream-properties.c:121
 #: ../plugins/properties/stream-properties.c:122
@@ -649,7 +643,7 @@
 
 #: ../plugins/properties/stream-properties.c:307
 msgid "General"
-msgstr ""
+msgstr "Všeobcené"
 
 #: ../plugins/properties/stream-properties.c:354
 msgid "Stream doesn't support tags changes"
@@ -679,7 +673,7 @@
 
 #: ../plugins/tray/tray-icon.c:373
 msgid "Tray icon plugin"
-msgstr ""
+msgstr "Modul ikony v oznamovacej oblasti"
 
 #: ../plugins/tray/tray-icon.c:383
 msgid "Enable notification"
@@ -687,34 +681,33 @@
 
 #: ../plugins/tray/tray-icon.c:392
 msgid "Always minimize to tray when window is closed"
-msgstr ""
+msgstr "Vždy minimalizovať to oznamovacej oblasti, pri zavretí okna"
 
 #: ../plugins/tray/tray-icon.c:431
 msgid "Minimize to tray?"
-msgstr ""
+msgstr "Minimalizovať do oznamovacej oblasti?"
 
 #: ../plugins/tray/tray-icon.c:437
 msgid "Minimize to tray"
-msgstr ""
+msgstr "Minimalizovať do oznamovacej oblasti"
 
 #: ../plugins/tray/tray-icon.c:453
 msgid "Are you sure you want to quit Parole"
-msgstr ""
+msgstr "Naozaj chcete ukončiť Parole"
 
 #: ../plugins/tray/tray-icon.c:457
-#, fuzzy
 msgid "Remember my choice"
-msgstr "Zapamätať zoznam skladieb"
+msgstr "Zapamätať môj výber"
 
 #. Construct function
 #: ../plugins/tray/tray-icon.c:544
 msgid "Tray icon"
-msgstr ""
+msgstr "Ikona v oznamovacej oblasti"
 
 #. Title
 #: ../plugins/tray/tray-icon.c:545
 msgid "Show icon in the system tray"
-msgstr ""
+msgstr "Zobrazovanie ikony v oznamovacej oblasti"
 
 #. Construct function
 #: ../plugins/window-title/window-title.c:102
diff -Nur parole-0.1.90.orig/po/tr.po parole-0.1.90/po/tr.po
--- parole-0.1.90.orig/po/tr.po	2009-10-06 12:11:40.000000000 +0200
+++ parole-0.1.90/po/tr.po	2009-10-22 19:41:13.000000000 +0200
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: Parole Media Player Turkish Translation\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-10-06 10:11+0000\n"
+"POT-Creation-Date: 2009-10-06 15:54+0000\n"
 "PO-Revision-Date: \n"
 "Last-Translator: Samed Beyribey <ras0ir at eventualis.org>\n"
 "Language-Team: Xfce-TR <xfce-tr at googlegroups.com>\n"
@@ -111,6 +111,11 @@
 msgstr "_Ortam"
 
 #: ../data/interfaces/parole.ui.h:25
+#, fuzzy
+msgid "_Open location"
+msgstr "Konum aç..."
+
+#: ../data/interfaces/parole.ui.h:26
 msgid "_View"
 msgstr "_Görünüm"
 
@@ -127,15 +132,24 @@
 msgstr "<b>Site:</b>"
 
 #: ../data/interfaces/plugins.ui.h:4
+msgid "Enabled"
+msgstr ""
+
+#: ../data/interfaces/plugins.ui.h:5
 #, fuzzy
 msgid "Media Player plugins"
 msgstr "Ortam Oynatıcı Ayarları"
 
-#: ../data/interfaces/plugins.ui.h:5
+#: ../data/interfaces/plugins.ui.h:6
 #, fuzzy
 msgid "Parole Plugins"
 msgstr "Parole Eklenti Seçenekleri"
 
+#: ../data/interfaces/plugins.ui.h:7
+#, fuzzy
+msgid "Plugin"
+msgstr "Eklentiler"
+
 #: ../data/interfaces/parole-settings.ui.h:1
 msgid "<b>Audio</b>"
 msgstr "<b>Ses</b>"
@@ -394,6 +408,11 @@
 msgid "Paused"
 msgstr "Durdurulmuş"
 
+#: ../parole/parole-statusbar.c:88
+#, fuzzy
+msgid "Playing"
+msgstr "Oynatılan Parça"
+
 #: ../parole/parole-statusbar.c:117
 msgid "Live stream:"
 msgstr "Canlı yayın:"
diff -Nur parole-0.1.90.orig/po/uk.po parole-0.1.90/po/uk.po
--- parole-0.1.90.orig/po/uk.po	2009-10-06 12:11:40.000000000 +0200
+++ parole-0.1.90/po/uk.po	2009-10-22 19:41:13.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: uk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-10-06 10:11+0000\n"
+"POT-Creation-Date: 2009-10-06 15:54+0000\n"
 "PO-Revision-Date: 2009-08-30 20:32+0300\n"
 "Last-Translator: Motsyo Gennadi <drool at altlinux.ru>\n"
 "Language-Team: Ukrainian\n"
@@ -117,6 +117,11 @@
 msgstr "_Фільм"
 
 #: ../data/interfaces/parole.ui.h:25
+#, fuzzy
+msgid "_Open location"
+msgstr "Відкрити місцезнаходження..."
+
+#: ../data/interfaces/parole.ui.h:26
 msgid "_View"
 msgstr "_Вигляд"
 
@@ -133,15 +138,24 @@
 msgstr "<b>Сайт:</b>"
 
 #: ../data/interfaces/plugins.ui.h:4
+msgid "Enabled"
+msgstr ""
+
+#: ../data/interfaces/plugins.ui.h:5
 #, fuzzy
 msgid "Media Player plugins"
 msgstr "Налаштування програвача"
 
-#: ../data/interfaces/plugins.ui.h:5
+#: ../data/interfaces/plugins.ui.h:6
 #, fuzzy
 msgid "Parole Plugins"
 msgstr "Властивості плагінів"
 
+#: ../data/interfaces/plugins.ui.h:7
+#, fuzzy
+msgid "Plugin"
+msgstr "Плагіни"
+
 #: ../data/interfaces/parole-settings.ui.h:1
 msgid "<b>Audio</b>"
 msgstr "<b>Звук</b>"
@@ -391,6 +405,11 @@
 msgid "Paused"
 msgstr "Пауза"
 
+#: ../parole/parole-statusbar.c:88
+#, fuzzy
+msgid "Playing"
+msgstr "Відтворюється трек"
+
 #: ../parole/parole-statusbar.c:117
 msgid "Live stream:"
 msgstr "Потік:"


Index: parole.spec
===================================================================
RCS file: /cvs/pkgs/rpms/parole/devel/parole.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- parole.spec	9 Oct 2009 08:30:48 -0000	1.1
+++ parole.spec	22 Oct 2009 17:57:44 -0000	1.2
@@ -1,6 +1,6 @@
 Name:           parole
 Version:        0.1.90
-Release:        2%{?dist}
+Release:        3%{?dist}
 Summary:        Media player for the Xfce desktop
 
 Group:          Applications/Multimedia
@@ -9,17 +9,12 @@ URL:            http://goodies.xfce.org/
 Source0:        http://archive.xfce.org/src/apps/parole/0.1/%{name}-%{version}.tar.bz2
 # http://git.xfce.org/apps/parole/commit/?id=346982b9ca86b645b19385fa7549ec43e38c2b88
 Patch0:         parole-0.1.90-fix-website-url.patch
-# the following patches are just translation updates
-# http://git.xfce.org/apps/parole/commit/?id=72afaf0774f8afcfbb15c8b4389282ba363bc621
-Patch1:         parole-0.1.90-update-japanese-translation.patch
-# http://git.xfce.org/apps/parole/commit/?id=df8ad0098db0d1bc1a2f08b89554607e8ec85b19
-Patch2:         parole-0.1.90-include-galician-translation.patch
-# http://git.xfce.org/apps/parole/commit/?id=b9fa73571f68b49b0836404aac4fe2a8419efba8
-Patch3:         parole-0.1.90-update-asturian-translation.patch
-# http://git.xfce.org/apps/parole/commit/?id=051f1a31c797c60ccedd1a36b6403aac9b950ed8
-Patch4:         parole-0.1.90-include-french-translation.patch
-# http://git.xfce.org/apps/parole/commit/?id=c30195f5b7d372f207d039b07d348d795886d926
-Patch5:         parole-0.1.90-include-german-translation.patch
+# http://git.xfce.org/apps/parole/commit/?id=795a28c9be6e6c3556a10f0064c75de639fedf7f
+Patch1:         parole-0.1.90-fix-untranslatable-strings.patch
+# http://git.xfce.org/apps/parole/commit/?id=80a358e16a7933529c70e5982bc7ad0774109580
+Patch2:         parole-0.1.90-set-correct-gettext-domain.patch
+# created from updated translations from git
+Patch3:         parole-0.1.90-translations.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 BuildRequires:  gtk2-devel >= 2.16.0
@@ -63,11 +58,10 @@ The %{name}-devel package contains heade
 %prep
 %setup -q
 %patch0 -p1 -b .orig
-%patch1 -p1
-%patch2 -p1
+%patch1 -p1 -b .untranslatable
+%patch2 -p1 -b .gettext
 %patch3 -p1
-%patch4 -p1
-%patch5 -p1
+
 # fix desktop file
 sed -i 's|Application;|Application|g' data/desktop/%{name}.desktop.in.in
 
@@ -128,6 +122,10 @@ gtk-update-icon-cache %{_datadir}/icons/
 
 
 %changelog
+* Thu Oct 08 2009 Christoph Wickert <cwickert at fedoraproject.org> - 0.1.90-3
+- Set locale before loading the GtkBuilder interface definition for dialogs
+- Translation updates
+
 * Thu Oct 08 2009 Christoph Wickert <cwickert at fedoraproject.org> - 0.1.90-2
 - BuildRequire taglib-devel and fix libnotify requirement
 


--- parole-0.1.90-include-french-translation.patch DELETED ---


--- parole-0.1.90-include-galician-translation.patch DELETED ---


--- parole-0.1.90-include-german-translation.patch DELETED ---


--- parole-0.1.90-update-asturian-translation.patch DELETED ---


--- parole-0.1.90-update-japanese-translation.patch DELETED ---




More information about the fedora-extras-commits mailing list