From dcc8c4be9b88f63d663361a31da146c266bba75f Mon Sep 17 00:00:00 2001 From: NeoTheThird Date: Thu, 17 Aug 2017 00:11:40 +0200 Subject: [PATCH] Added sponsors notice --- po/com.ubuntu.ubports.pot | 9 ++++++++- qml/Home.qml | 10 ++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/po/com.ubuntu.ubports.pot b/po/com.ubuntu.ubports.pot index ed4d187..8a48810 100644 --- a/po/com.ubuntu.ubports.pot +++ b/po/com.ubuntu.ubports.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: com.ubuntu.ubports\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-16 22:04+0000\n" +"POT-Creation-Date: 2017-08-16 22:10+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -102,6 +102,13 @@ msgid "" "a> to get in the loop and stay in the loop." msgstr "" +#. TRANSLATORS: Please make sure the URLs are correct +#: ../qml/Home.qml:145 +msgid "" +"UBports is made possible by our our " +"awesome sponsors, donors and patrons!" +msgstr "" + #: ../qml/About.qml:33 msgid "About the App" msgstr "" diff --git a/qml/Home.qml b/qml/Home.qml index 053e54a..4731474 100644 --- a/qml/Home.qml +++ b/qml/Home.qml @@ -135,6 +135,16 @@ Page { text: i18n.tr("We are in this together. As a starting point, stay on top of the latest developments, related news and a whole bunch of other experience-enhancing updates. Join our mailing list to get in the loop and stay in the loop.") onLinkActivated: Qt.openUrlExternally(link) } + + Label { + width: parent.width + linkColor: UbuntuColors.orange + horizontalAlignment: Text.AlignHCenter + wrapMode: Text.WrapAtWordBoundaryOrAnywhere + //TRANSLATORS: Please make sure the URLs are correct + text: i18n.tr("UBports is made possible by our our awesome sponsors, donors and patrons!") + onLinkActivated: Qt.openUrlExternally(link) + } } } }