diff options
-rw-r--r-- | po/mageiawelcome.pot | 24 | ||||
-rw-r--r-- | qml/mageiawelcome.py | 2 |
2 files changed, 11 insertions, 15 deletions
diff --git a/po/mageiawelcome.pot b/po/mageiawelcome.pot index cb87bf2..1439c22 100644 --- a/po/mageiawelcome.pot +++ b/po/mageiawelcome.pot @@ -10,7 +10,7 @@ msgstr "" "#-#-#-#-# desktop.pot (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-26 14:26+0100\n" +"POT-Creation-Date: 2019-04-26 10:11+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -36,46 +36,42 @@ msgstr "" msgid "Welcome screen for Mageia, that is displayed upon first users boot" msgstr "" -#: usr/share/applications/template_mageiawelcome.desktop:8 -msgid "mageiawelcome" -msgstr "" - -#: mageiawelcome.py:73 +#: mageiawelcome.py:68 msgctxt "ConfList|" -msgid "<b>Congratulations!</b><BR />You have are now running {}" +msgid "<b>Congratulations!</b><BR />You are now running {}" msgstr "" -#: mageiawelcome.py:74 +#: mageiawelcome.py:69 msgctxt "ConfList|" msgid "You are using linux kernel: {}" msgstr "" -#: mageiawelcome.py:75 +#: mageiawelcome.py:70 msgctxt "ConfList|" msgid "Your system architecture is: {}" msgstr "" -#: mageiawelcome.py:76 +#: mageiawelcome.py:71 msgctxt "ConfList|" msgid "You are now using the Desktop: {}" msgstr "" -#: mageiawelcome.py:77 +#: mageiawelcome.py:72 msgctxt "ConfList|" msgid "Your user id is: {}" msgstr "" -#: mageiawelcome.py:80 +#: mageiawelcome.py:75 msgctxt "ConfList|" msgid "You are connected to a network through {}" msgstr "" -#: mageiawelcome.py:82 +#: mageiawelcome.py:77 msgctxt "ConfList|" msgid "You have no network connection" msgstr "" -#: mageiawelcome.py:188 +#: mageiawelcome.py:183 msgctxt "app|" msgid "Welcome to Mageia" msgstr "" diff --git a/qml/mageiawelcome.py b/qml/mageiawelcome.py index 8986333..83193d9 100644 --- a/qml/mageiawelcome.py +++ b/qml/mageiawelcome.py @@ -65,7 +65,7 @@ class ConfList(QAbstractListModel): netconfs += ", " + conf.name() self.configuration = [ - {'name': translate('ConfList',"<b>Congratulations!</b><BR />You have are now running {}").format(release)}, + {'name': translate('ConfList',"<b>Congratulations!</b><BR />You are now running {}").format(release)}, {'name': translate('ConfList',"You are using linux kernel: {}").format(kernel)}, {'name': translate('ConfList',"Your system architecture is: {}").format(arch)}, {'name': translate('ConfList',"You are now using the Desktop: {}").format(desktop)}, |