Warning, /education/kstars/kstars/kstarslite/qml/dialogs/AboutDialog.qml is written in an unsupported language. File is not indexed.
0001 // SPDX-FileCopyrightText: 2018 Csaba Kertesz <csaba.kertesz@gmail.com>
0002 // SPDX-License-Identifier: GPL-2.0-or-later
0003
0004 import QtQuick 2.6
0005 import QtQuick.Window 2.2
0006 import QtQuick.Layouts 1.1
0007 import QtQuick.Controls 2.0
0008 import QtQuick.Controls.Material 2.0
0009 import QtQuick.Controls.Universal 2.0
0010 import "../constants" 1.0
0011 import "../modules"
0012
0013 KSPage {
0014 id: aboutDialog
0015 objectName: "aboutDialog"
0016 title: xi18n("About")
0017
0018 property alias versionText: versionLabel.text
0019 property alias buildText: buildLabel.text
0020 property alias teamText: teamLabel.text
0021 property alias licenseText: licenseLabel.text
0022
0023 ColumnLayout {
0024 Layout.fillWidth: true
0025 Layout.fillHeight: true
0026
0027 KSLabel {
0028 text: xi18n("KStars")
0029 }
0030
0031 KSLabel {
0032 id: versionLabel
0033 text: ""
0034 }
0035
0036 KSLabel {
0037 text: xi18n("Desktop Planetarium")
0038 }
0039
0040 KSLabel {
0041 id: buildLabel
0042 text: ""
0043 }
0044
0045 KSLabel {
0046 id: teamLabel
0047 text: ""
0048 }
0049
0050 KSLabel {
0051 textFormat: Text.RichText
0052 text: "<a href=\"https://edu.kde.org/kstars\">https://edu.kde.org/kstars</a>"
0053 }
0054
0055 KSLabel {
0056 id: licenseLabel
0057 text: ""
0058 }
0059 }
0060 }