From 5a5c9f268c3c2124c3d96375d2248c634c528032 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Sat, 5 Dec 2009 18:29:26 -0200 Subject: [PATCH] Changed Retweet to Repost to make it network agnostic --- mitterlib/ui/ui_pygtk.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mitterlib/ui/ui_pygtk.py b/mitterlib/ui/ui_pygtk.py index 71745da..b66b2de 100644 --- a/mitterlib/ui/ui_pygtk.py +++ b/mitterlib/ui/ui_pygtk.py @@ -291,7 +291,7 @@ class Interface(object): - + @@ -312,7 +312,7 @@ class Interface(object): - + @@ -393,12 +393,12 @@ class Interface(object): action_group.add_action(self._reply_action) # TODO: Find a better word (non-network related) to this - self._retweet_action = gtk.Action('Retweet', 'Re_tweet', + self._repost_action = gtk.Action('Repost', 'Re_post', "Put someone's else message on your timeline", gtk.STOCK_CONVERT) - self._retweet_action.set_property('sensitive', False) + self._repost_action.set_property('sensitive', False) # TODO: Connect - action_group.add_action(self._retweet_action) + action_group.add_action(self._repost_action) # Help actions about_action = gtk.Action('About', '_About', 'About Mitter', @@ -680,7 +680,7 @@ class Interface(object): self._delete_action.set_property('sensitive', user_owned) self._reply_action.set_property('sensitive', not user_owned) - self._retweet_action.set_property('sensitive', not user_owned) + self._repost_action.set_property('sensitive', not user_owned) return 0