mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2024-11-26 12:53:12 -06:00
Updating some translation strings
This commit is contained in:
parent
e7943cba50
commit
c50c42b895
@ -483,6 +483,7 @@ class listBufferController(baseBufferController):
|
|||||||
super(listBufferController, self).start_stream()
|
super(listBufferController, self).start_stream()
|
||||||
|
|
||||||
def get_user_ids(self):
|
def get_user_ids(self):
|
||||||
|
print "getting user id's"
|
||||||
self.users = []
|
self.users = []
|
||||||
next_cursor = -1
|
next_cursor = -1
|
||||||
while(next_cursor):
|
while(next_cursor):
|
||||||
|
@ -460,6 +460,9 @@ class Controller(object):
|
|||||||
older_list = utils.find_item(buff.session.db["lists"][dlg.get_item()]["id"], buff.session.db["lists"])
|
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"].pop(older_list)
|
||||||
buff.session.db["lists"].append(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:
|
except TwythonError as e:
|
||||||
output.speak("error %s: %s" % (e.error_code, e.msg))
|
output.speak("error %s: %s" % (e.error_code, e.msg))
|
||||||
|
|
||||||
@ -470,7 +473,6 @@ class Controller(object):
|
|||||||
s = self.get_best_buffer().session
|
s = self.get_best_buffer().session
|
||||||
l = listsController.listsController(s)
|
l = listsController.listsController(s)
|
||||||
|
|
||||||
|
|
||||||
def configuration(self, *args, **kwargs):
|
def configuration(self, *args, **kwargs):
|
||||||
""" Opens the global settings dialogue."""
|
""" Opens the global settings dialogue."""
|
||||||
d = settings.globalSettingsController()
|
d = settings.globalSettingsController()
|
||||||
@ -495,7 +497,6 @@ class Controller(object):
|
|||||||
def report_error(self, *args, **kwargs):
|
def report_error(self, *args, **kwargs):
|
||||||
r = issueReporter.reportBug(self.get_best_buffer().session.db["user_name"])
|
r = issueReporter.reportBug(self.get_best_buffer().session.db["user_name"])
|
||||||
|
|
||||||
|
|
||||||
def check_for_updates(self, *args, **kwargs):
|
def check_for_updates(self, *args, **kwargs):
|
||||||
update = updater.do_update()
|
update = updater.do_update()
|
||||||
if update == False:
|
if update == False:
|
||||||
|
@ -24,10 +24,10 @@ def call_threaded(func, *args, **kwargs):
|
|||||||
|
|
||||||
def stream_threaded(func, *args, **kwargs):
|
def stream_threaded(func, *args, **kwargs):
|
||||||
def new_func(*a, **k):
|
def new_func(*a, **k):
|
||||||
try:
|
# try:
|
||||||
func(**k)
|
func(**k)
|
||||||
except:
|
# except:
|
||||||
pub.sendMessage("streamError", session=a[0])
|
# pub.sendMessage("streamError", session=a[0])
|
||||||
thread = threading.Thread(target=new_func, args=args, kwargs=kwargs)
|
thread = threading.Thread(target=new_func, args=args, kwargs=kwargs)
|
||||||
thread.daemon = True
|
thread.daemon = True
|
||||||
thread.start()
|
thread.start()
|
||||||
|
@ -296,8 +296,8 @@ class Session(object):
|
|||||||
def start_streaming(self):
|
def start_streaming(self):
|
||||||
|
|
||||||
""" Start the streaming for sending tweets in realtime."""
|
""" Start the streaming for sending tweets in realtime."""
|
||||||
self.get_main_stream()
|
|
||||||
self.get_timelines()
|
self.get_timelines()
|
||||||
|
self.get_main_stream()
|
||||||
|
|
||||||
def get_main_stream(self):
|
def get_main_stream(self):
|
||||||
log.debug("Starting the main stream...")
|
log.debug("Starting the main stream...")
|
||||||
@ -317,7 +317,11 @@ class Session(object):
|
|||||||
stream_threaded(self.timelinesStream.statuses.filter, self.session_id, follow=ids)
|
stream_threaded(self.timelinesStream.statuses.filter, self.session_id, follow=ids)
|
||||||
|
|
||||||
def add_friends(self):
|
def add_friends(self):
|
||||||
|
try:
|
||||||
self.timelinesStream.set_friends(self.main_stream.friends)
|
self.timelinesStream.set_friends(self.main_stream.friends)
|
||||||
|
print "done"
|
||||||
|
except AttributeError:
|
||||||
|
pass
|
||||||
|
|
||||||
def listen_stream_error(self):
|
def listen_stream_error(self):
|
||||||
if hasattr(self, "main_stream"):
|
if hasattr(self, "main_stream"):
|
||||||
@ -344,6 +348,8 @@ class Session(object):
|
|||||||
if not hasattr(self, "timelinesStream"):
|
if not hasattr(self, "timelinesStream"):
|
||||||
self.get_timelines()
|
self.get_timelines()
|
||||||
self.reconnection_function_active = False
|
self.reconnection_function_active = False
|
||||||
|
if hasattr(self, "timelinesStream") and not hasattr(self.timelinesStream, "friends"):
|
||||||
|
self.add_friends()
|
||||||
try:
|
try:
|
||||||
urllib2.urlopen("http://74.125.228.231", timeout=5)
|
urllib2.urlopen("http://74.125.228.231", timeout=5)
|
||||||
except urllib2.URLError:
|
except urllib2.URLError:
|
||||||
|
@ -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()
|
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):
|
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()
|
return dlg.ShowModal()
|
||||||
|
|
||||||
def needs_restart():
|
def needs_restart():
|
||||||
|
@ -188,4 +188,4 @@ class mainFrame(wx.Frame):
|
|||||||
getattr(self, menuitem).Check(check)
|
getattr(self, menuitem).Check(check)
|
||||||
|
|
||||||
def no_update_available():
|
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()
|
||||||
|
Loading…
Reference in New Issue
Block a user