Merge branch 'master' of git://git.qubes-os.org/marmarek/installer

This commit is contained in:
Joanna Rutkowska 2012-12-04 00:18:37 +01:00
commit 0de38f3d44

View File

@ -31,9 +31,12 @@ N_ = lambda x: x
class moduleClass(Module):
def __init__(self):
Module.__init__(self)
f = open('/etc/qubes-release', 'r')
version = f.read().strip()
f.close()
self.priority = 1
self.sidebarTitle = N_("Welcome")
self.title = N_("Welcome to Qubes R1")
self.title = N_("Welcome to %s") % version
self.icon = "workstation.png"
def apply(self, interface, testing=False):