Changeset 4694
- Timestamp:
- May 11, 2017, 10:29:58 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lliurex-shutdowner/trunk/fuentes/lliurex-shutdowner.install/usr/sbin/shutdowner
r2379 r4694 18 18 # with this program. If not, see <http://www.gnu.org/licenses/>. 19 19 20 import gi 21 gi.require_version('Gtk', '3.0') 20 22 from gi.repository import Gtk, GdkPixbuf, Gdk, GObject 21 23 import os, sys … … 85 87 #liststore1 = Gtk.ListStore(GObject.TYPE_STRING) 86 88 #liststore2 = Gtk.ListStore(GObject.TYPE_STRING) 87 days = { 'Lunes': False, 'Martes' : False, 'Miercoles': False, 'Jueves': False, 'Viernes': False}88 daynames = [ 'Lunes','Martes','Miercoles','Jueves','Viernes']89 days = { _('Monday'): False, _('Tuesday') : False, _('Wednesday'): False, _('Thursday'): False, _('Friday'): False} 90 daynames = [_('Monday'),_('Tuesday'),_('Wednesday'),_('Thursday'),_('Friday')] 89 91 hora = None 90 92 clients_file="/run/clients_tmp"
Note: See TracChangeset
for help on using the changeset viewer.