change copyrights and translate to english

This commit is contained in:
Romain Bignon 2010-04-12 10:11:05 +02:00
commit ec7aa7a4e7
2 changed files with 38 additions and 41 deletions

View file

@ -3,7 +3,7 @@
# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai
"""
Copyright(C) 2010 Romain Bignon
Copyright(C) 2010 Julien Hébert
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by

View file

@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
"""
Copyright(C) 2010 Romain Bignon
Copyright(C) 2010 Julien Hébert
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@ -24,15 +24,12 @@ from weboob.tools.application import BaseApplication
try:
import hildon
except ImportError:
raise ImportError("erreur d'importation de hildon http://maemo.org/packages/view/python-hildon/")
raise ImportError("Unable to import hildon http://maemo.org/packages/view/python-hildon/")
try :
import gtk
except ImportError:
raise ImportError("erreur d'importation de gtk")
import gtk
class TransilienUI():
"interface hildon"
"hildon interface"
def __init__(self, weboob):
self.weboob = weboob
self.main_window = hildon.Window()
@ -127,12 +124,12 @@ class TransilienUI():
self.main_window.show_all()
def on_main_window_destroy(self, widget):
"quitte l'application à la fermeture de la fenetre"
"exit application at the window close"
gtk.main_quit()
def on_retour_button_clicked(self, widget):
"le bouton retour est clicked"
"the button is clicked"
col_source = self.combo_source.get_active(0)
col_dest = self.combo_dest.get_active(0)
self.combo_source.set_active(0, col_dest)
@ -140,11 +137,11 @@ class TransilienUI():
self.refresh()
def on_refresh_button_clicked(self, widget):
"le bouton refresh est clicked"
"the refresh button is clicked"
self.refresh()
def refresh(self):
"met a jour les horaires"
"update departures"
for name, backend in self.weboob.iter_backends():
for station in backend.iter_station_search(self.combo_source.get_current_text()):
for name, backend in self.weboob.iter_backends():