summaryrefslogtreecommitdiffstats
path: root/qml/mageiawelcome.py
diff options
context:
space:
mode:
authorPapoteur <papoteur@mageia.org>2018-12-15 13:02:57 +0100
committerPapoteur <papoteur@mageia.org>2018-12-17 10:19:29 +0100
commitf2b8ab8372e3465a1af70831c82199cd7379a6db (patch)
tree74e8051d4b537c40808e9d6c286c649147843aa7 /qml/mageiawelcome.py
parentfa5fa70878c63ceacc05e50bd2e1050bc353f953 (diff)
downloadmageiawelcome-f2b8ab8372e3465a1af70831c82199cd7379a6db.tar
mageiawelcome-f2b8ab8372e3465a1af70831c82199cd7379a6db.tar.gz
mageiawelcome-f2b8ab8372e3465a1af70831c82199cd7379a6db.tar.bz2
mageiawelcome-f2b8ab8372e3465a1af70831c82199cd7379a6db.tar.xz
mageiawelcome-f2b8ab8372e3465a1af70831c82199cd7379a6db.zip
Modify presentation and some texts
Diffstat (limited to 'qml/mageiawelcome.py')
-rw-r--r--qml/mageiawelcome.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/qml/mageiawelcome.py b/qml/mageiawelcome.py
index 0303a1c..1f366d3 100644
--- a/qml/mageiawelcome.py
+++ b/qml/mageiawelcome.py
@@ -44,11 +44,11 @@ class ConfList(QAbstractListModel):
desktop = os.getenv("XDG_CURRENT_DESKTOP")
self.configuration = [
- {'name': self.tr("Congratulations! You have completed the installation of {}").format(release)},
+ {'name': self.tr("<b>Congratulations!</b><BR />You have completed the installation of {}").format(release)},
{'name': self.tr("You are using linux kernel: {}").format(kernel)},
{'name': self.tr("Your system architecture is: {}").format(arch)},
{'name': self.tr("You are now using the Desktop: {}").format(desktop)},
- {'name': self.tr("Your user's id is: {}").format(os.getuid())},
+ {'name': self.tr("Your user id is: {}").format(os.getuid())},
]
def data(self, index, role=Qt.DisplayRole):
@@ -88,7 +88,6 @@ class Norun(QObject):
QObject.__init__(self)
self.home = os.getenv("HOME")
self.conffile = self.home + "/.config/mageiawelcome/norun.flag"
- print(self.conffile, os.path.exists(self.conffile))
@pyqtSlot(bool)
def setRunAtLaunch(self, checked):