-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
AboutPage.qml
160 lines (148 loc) · 4.94 KB
/
AboutPage.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/*
* This file is part of harbour-todolist.
* SPDX-FileCopyrightText: 2020-2024 Mirian Margiani
* SPDX-License-Identifier: GPL-3.0-or-later
*/
/*
* Translators:
* Please add yourself to the list of translators in TRANSLATORS.json.
* If your language is already in the list, add your name to the 'entries'
* field. If you added a new translation, create a new section in the 'extra' list.
*
* Other contributors:
* Please add yourself to the relevant list of contributors below.
*
*/
import QtQuick 2.0
import Sailfish.Silica 1.0 as S
import Opal.About 1.0 as A
A.AboutPageBase {
id: page
appName: main.appName
appIcon: Qt.resolvedUrl("../images/%1.png".arg(Qt.application.name))
appVersion: APP_VERSION
appRelease: APP_RELEASE
allowDownloadingLicenses: false
sourcesUrl: "https://github.com/ichthyosaurus/%1".arg(Qt.application.name)
homepageUrl: "https://forum.sailfishos.org/t/apps-by-ichthyosaurus/15753"
translationsUrl: "https://hosted.weblate.org/projects/%1".arg(Qt.application.name)
changelogList: Qt.resolvedUrl("../Changelog.qml")
licenses: A.License { spdxId: "GPL-3.0-or-later" }
donations.text: donations.defaultTextCoffee
donations.services: [
A.DonationService {
name: "Liberapay"
url: "https://liberapay.com/ichthyosaurus"
}
]
description: qsTr("A simple tool for planning what to do next.")
mainAttributions: "2020-%1 Mirian Margiani".arg((new Date()).getFullYear())
autoAddOpalAttributions: true
attributions: [
A.Attribution {
name: "SortFilterProxyModel"
entries: ["2016 Pierre-Yves Siret"]
licenses: A.License { spdxId: "MIT" }
sources: "https://github.com/oKcerG/SortFilterProxyModel"
}
]
contributionSections: [
A.ContributionSection {
title: qsTr("Development")
groups: [
A.ContributionGroup {
title: qsTr("Programming")
entries: ["Mirian Margiani", "Johannes Bachmann", "Øystein S. Haaland"]
}/*,
A.ContributionGroup {
title: qsTr("Icon Design")
entries: ["Mirian Margiani"]
}*/
]
},
//>>> GENERATED LIST OF TRANSLATION CREDITS
A.ContributionSection {
title: qsTr("Translations")
groups: [
A.ContributionGroup {
title: qsTr("Swedish")
entries: [
"Åke Engelbrektson"
]
},
A.ContributionGroup {
title: qsTr("Spanish")
entries: [
"Kamborio",
"gallegonovato"
]
},
A.ContributionGroup {
title: qsTr("Russian")
entries: [
"Nikolay Sinyov"
]
},
A.ContributionGroup {
title: qsTr("Polish")
entries: [
"atlochowski",
"likot180"
]
},
A.ContributionGroup {
title: qsTr("Norwegian Nynorsk")
entries: [
"Øystein S. Haaland"
]
},
A.ContributionGroup {
title: qsTr("Indonesian")
entries: [
"Reza Almanda"
]
},
A.ContributionGroup {
title: qsTr("German")
entries: [
"Mirian Margiani"
]
},
A.ContributionGroup {
title: qsTr("Estonian")
entries: [
"Priit Jõerüüt"
]
},
A.ContributionGroup {
title: qsTr("English")
entries: [
"Mirian Margiani"
]
},
A.ContributionGroup {
title: qsTr("Chinese")
entries: [
"dashinfantry"
]
}
]
}
//<<< GENERATED LIST OF TRANSLATION CREDITS
]
S.PullDownMenu {
parent: page.flickable
/*S.MenuItem {
text: qsTr("Import from other apps")
onClicked: console.warn("not yet implemented")
}
S.MenuItem {
text: qsTr("Export data")
onClicked: console.warn("not yet implemented")
}*/
S.MenuItem {
text: qsTr("View old entries")
onClicked: pageStack.animatorPush(Qt.resolvedUrl("ArchivePage.qml"))
}
}
}