summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <philip@tecnocode.co.uk>2010-04-07 19:10:39 +0100
committerBastien Nocera <hadess@hadess.net>2010-04-27 12:47:57 +0100
commit44ec0266dfdb28976da064680e1b508d0fed584e (patch)
tree6c084cad595c3cf3e1bbe861e97d71b2df080483
parente55b44c636a74fdd836c9755154e59718a755b9e (diff)
downloadtotem-44ec0266dfdb28976da064680e1b508d0fed584e.tar.gz
Fix some strings in the BBC iPlayer plugin
https://bugzilla.gnome.org/show_bug.cgi?id=615090
-rw-r--r--src/plugins/iplayer/iplayer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/iplayer/iplayer.py b/src/plugins/iplayer/iplayer.py
index 7fbe2ba8e..4cdca70bb 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 unknown error getting the list of programmes for this channel and category combination.'))
+ self.totem.action_error (_('Error getting programme feed'), _('There was an error getting the list of programmes for this channel and category combination.'))
return False
category_iter = tree_store.get_iter (category_path)