Updating some translation strings

This commit is contained in:
Manuel Cortez 2015-05-02 17:22:28 -05:00
parent e7943cba50
commit c50c42b895
6 changed files with 18 additions and 10 deletions

View File

@ -483,6 +483,7 @@ class listBufferController(baseBufferController):
super(listBufferController, self).start_stream()
def get_user_ids(self):
print "getting user id's"
self.users = []
next_cursor = -1
while(next_cursor):

View File

@ -460,6 +460,9 @@ class Controller(object):
older_list = utils.find_item(buff.session.db["lists"][dlg.get_item()]["id"], buff.session.db["lists"])
buff.session.db["lists"].pop(older_list)
buff.session.db["lists"].append(list)
listBuffer = self.search_buffer("%s-list" % (buff.session.db["lists"][dlg.get_item()]["name"]), buff.session.db["user_name"])
listBuffer.get_user_ids()
pub.sendMessage("restart-streams", streams=["timelinesStream"], session=buff.session)
except TwythonError as e:
output.speak("error %s: %s" % (e.error_code, e.msg))
@ -470,7 +473,6 @@ class Controller(object):
s = self.get_best_buffer().session
l = listsController.listsController(s)
def configuration(self, *args, **kwargs):
""" Opens the global settings dialogue."""
d = settings.globalSettingsController()
@ -495,7 +497,6 @@ class Controller(object):
def report_error(self, *args, **kwargs):
r = issueReporter.reportBug(self.get_best_buffer().session.db["user_name"])
def check_for_updates(self, *args, **kwargs):
update = updater.do_update()
if update == False:

View File

@ -24,10 +24,10 @@ def call_threaded(func, *args, **kwargs):
def stream_threaded(func, *args, **kwargs):
def new_func(*a, **k):
try:
func(**k)
except:
pub.sendMessage("streamError", session=a[0])
# try:
func(**k)
# except:
# pub.sendMessage("streamError", session=a[0])
thread = threading.Thread(target=new_func, args=args, kwargs=kwargs)
thread.daemon = True
thread.start()

View File

@ -296,8 +296,8 @@ class Session(object):
def start_streaming(self):
""" Start the streaming for sending tweets in realtime."""
self.get_main_stream()
self.get_timelines()
self.get_main_stream()
def get_main_stream(self):
log.debug("Starting the main stream...")
@ -317,7 +317,11 @@ class Session(object):
stream_threaded(self.timelinesStream.statuses.filter, self.session_id, follow=ids)
def add_friends(self):
self.timelinesStream.set_friends(self.main_stream.friends)
try:
self.timelinesStream.set_friends(self.main_stream.friends)
print "done"
except AttributeError:
pass
def listen_stream_error(self):
if hasattr(self, "main_stream"):
@ -344,6 +348,8 @@ class Session(object):
if not hasattr(self, "timelinesStream"):
self.get_timelines()
self.reconnection_function_active = False
if hasattr(self, "timelinesStream") and not hasattr(self.timelinesStream, "friends"):
self.add_friends()
try:
urllib2.urlopen("http://74.125.228.231", timeout=5)
except urllib2.URLError:

View File

@ -8,7 +8,7 @@ def delete_tweet_dialog(parent):
return wx.MessageDialog(parent, _(u"Do you really want to delete this message? It will be eliminated from Twitter as well."), _(u"Delete"), wx.ICON_QUESTION|wx.YES_NO).ShowModal()
def exit_dialog(parent):
dlg = wx.MessageDialog(parent, _(u"Do you really want to close " + application.name + "?"), _(u"Exit"), wx.YES_NO|wx.ICON_QUESTION)
dlg = wx.MessageDialog(parent, _(u"Do you really want to close {0}?").format(application.name,), _(u"Exit"), wx.YES_NO|wx.ICON_QUESTION)
return dlg.ShowModal()
def needs_restart():

View File

@ -188,4 +188,4 @@ class mainFrame(wx.Frame):
getattr(self, menuitem).Check(check)
def no_update_available():
wx.MessageDialog(None, _(u"Your "+application.name+" version is up to date"), _(u"Update"), style=wx.OK).ShowModal()
wx.MessageDialog(None, _(u"Your {0} version is up to date").format(application.name,), _(u"Update"), style=wx.OK).ShowModal()