Hi,
Find attached a small patch that correct a missing string in freevo.pot.
The patch also includes the translation for french po file.
Regards,
David
diff -Naur freevo/i18n/fr/LC_MESSAGES/freevo.po freevo-new/i18n/fr/LC_MESSAGES/freevo.po
--- freevo/i18n/fr/LC_MESSAGES/freevo.po 2003-10-15 23:32:44.000000000 -0400
+++ freevo-new/i18n/fr/LC_MESSAGES/freevo.po 2003-10-15 23:29:16.000000000 -0400
@@ -324,6 +324,10 @@
msgid "Show Sites Headlines"
msgstr "Consulter les derni�res nouvelles"
+#: src/plugins/headlines.py:225
+msgid "Fetching headlines..."
+msgstr "R�cup�ration des nouvelles..."
+
#: plugins/headlines.py:275
#, fuzzy
msgid "No Headlines found"
diff -Naur freevo/i18n/freevo.pot freevo-new/i18n/freevo.pot
--- freevo/i18n/freevo.pot 2003-10-15 23:30:19.000000000 -0400
+++ freevo-new/i18n/freevo.pot 2003-10-15 23:29:16.000000000 -0400
@@ -316,6 +316,10 @@
msgid "Show Sites Headlines"
msgstr ""
+#: src/plugins/headlines.py:225
+msgid "Fetching headlines..."
+msgstr ""
+
#: plugins/headlines.py:275
msgid "No Headlines found"
msgstr ""
diff -Naur freevo/src/plugins/headlines.py freevo-new/src/plugins/headlines.py
--- freevo/src/plugins/headlines.py 2003-10-15 23:30:20.000000000 -0400
+++ freevo-new/src/plugins/headlines.py 2003-10-15 23:29:16.000000000 -0400
@@ -222,7 +222,7 @@
# create Reader object
reader = Sax2.Reader()
- popup = PopupBox(text='Fetching headlines...')
+ popup = PopupBox(text=_('Fetching headlines...'))
popup.show()
# parse the document
@@ -292,7 +292,7 @@
"""
return a list of actions for this item
"""
- items = [ ( self.create_locations_menu , 'Headlines Sites' ) ]
+ items = [ ( self.create_locations_menu , _('Headlines Sites') ) ]
return items
def create_locations_menu(self, arg=None, menuw=None):