/* * This file is part of the Flowee project * Copyright (C) 2022-2023 Tom Zander * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ import QtQuick import QtQuick.Layouts import "../Flowee" as Flowee Page { headerText: qsTr("About") ColumnLayout { width: parent.width Image { source: Pay.useDarkSkin ? "qrc:/FloweePay-light.svg" : "qrc:/FloweePay.svg" Layout.fillWidth: true fillMode: Image.PreserveAspectFit } Flowee.Label { text: "Flowee Pay (mobile) v" + Application.version Layout.fillWidth: true wrapMode: Text.WrapAtWordBoundaryOrAnywhere } Item { width: 10; height: 10 } // spacer TextButton { id: translate text: qsTr("Help translate this app") imageSource: Pay.useDarkSkin ? "qrc:/external-light.svg" : "qrc:/external.svg" onClicked: Qt.openUrlExternally("https://crowdin.com/project/floweepay") } TextButton { text: qsTr("License") imageSource: translate.imageSource onClicked: Qt.openUrlExternally("https://www.gnu.org/licenses/gpl-3.0") } TextButton { text: qsTr("Credits") subtext: qsTr("© 2020-2026 Tom Zander and contributors") pageButton: true onClicked: thePile.push(creditsPage) Component { id: creditsPage Page { headerText: qsTr("Credits") Flowee.Label { text: "

Author and maintainer

Tom Zander

Translations

Deutsch
Georg Engelmann
Español
Gerard H.R.(devperate)
Hausa
Ibrahim Rabiu
Nederlands
Tom Zander
Polski
Yantri & Karol Trzeszczkowski
Portuguese
bitcoincashbrazil

Code Contributors

Calin Culianu

Art Contributors

You? " textFormat: Text.RichText wrapMode: Text.WordWrap width: parent.width } } } } TextButton { text: qsTr("Project Home") subtext: qsTr("With git repository and issues tracker") imageSource: translate.imageSource onClicked: Qt.openUrlExternally("http://bitcoincashcode.org/Flowee/pay") } TextButton { text: qsTr("Telegram") imageSource: translate.imageSource onClicked: Qt.openUrlExternally("https://t.me/Flowee_org") } } }