From b071d879f171dbdf052e6b19fd5852fc433590f9 Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Tue, 27 Apr 2010 13:28:20 +0100 Subject: Revert "Fix some strings in the BBC iPlayer plugin" This reverts commit 44ec0266dfdb28976da064680e1b508d0fed584e. --- src/plugins/iplayer/iplayer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/iplayer/iplayer.py b/src/plugins/iplayer/iplayer.py index 4cdca70bb..7fbe2ba8e 100644 --- a/src/plugins/iplayer/iplayer.py +++ b/src/plugins/iplayer/iplayer.py @@ -54,7 +54,7 @@ class IplayerPlugin (totem.Plugin): def _populate_channel_list_cb (self, tree_store, parent_path, values): # Callback from PopulateChannelsThread to add stuff to the tree store if values == None: - self.totem.action_error (_('Error listing channel categories'), _('There was an unknown error getting the list of television channels available on BBC iPlayer.')) + self.totem.action_error (_('Error Listing Channel Categories'), _('There was an unknown error getting the list of television channels available on BBC iPlayer.')) return False parent_iter = tree_store.get_iter (parent_path) @@ -103,7 +103,7 @@ class IplayerPlugin (totem.Plugin): def _populate_programme_list_cb (self, tree_store, category_path, values, remove_placeholder): # Callback from PopulateProgrammesThread to add stuff to the tree store if values == None: - self.totem.action_error (_('Error getting programme feed'), _('There was an error getting the list of programmes for this channel and category combination.')) + self.totem.action_error (_('Error getting programme feed'), _('There was an unknown error getting the list of programmes for this channel and category combination.')) return False category_iter = tree_store.get_iter (category_path) -- cgit v1.2.1