-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
AboutPage.qml
174 lines (165 loc) · 5.79 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/*
* This file is part of Captain's Log.
* 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: root
appName: appWindow.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 diary application for keeping track of your thoughts.")
mainAttributions: ["2020-%1 Mirian Margiani".arg((new Date()).getFullYear()), "2020 Gabriel Berkigt"]
autoAddOpalAttributions: true
attributions: [
A.Attribution {
name: "pyratemp"
entries: ["2007-2013 Roland Koebler"]
licenses: A.License { spdxId: "MIT" }
homepage: "https://www.simple-is-better.org/template/pyratemp.html"
sources: "https://www.simple-is-better.org/template/pyratemp-0.3.2.tgz"
},
A.Attribution {
name: "SortFilterProxyModel"
entries: ["2016 Pierre-Yves Siret"]
licenses: A.License { spdxId: "MIT" }
sources: "https://github.com/oKcerG/SortFilterProxyModel"
},
A.Attribution {
name: "PyOtherSide"
entries: ["2011, 2013-2020 Thomas Perl"]
licenses: A.License { spdxId: "ISC" }
sources: "https://github.com/thp/pyotherside"
homepage: "https://thp.io/2011/pyotherside/"
},
A.Attribution {
name: "QChart.js"
entries: ["2014 Julien Wintz", "2019-2024 Mirian Margiani"]
licenses: A.License { spdxId: "MIT" }
sources: "https://web.archive.org/web/20180611014447/https://github.com/jwintz/qchart.js"
}
]
contributionSections: [
A.ContributionSection {
title: qsTr("Development")
groups: [
A.ContributionGroup {
title: qsTr("Programming")
entries: ["Mirian Margiani", "Gabriel Berkigt"]
},
A.ContributionGroup {
title: qsTr("Icon Design")
entries: ["Mirian Margiani", "JSEHV", "Gabriel Berkigt"]
}
]
},
//>>> GENERATED LIST OF TRANSLATION CREDITS
A.ContributionSection {
title: qsTr("Translations")
groups: [
A.ContributionGroup {
title: qsTr("Ukrainian")
entries: [
"Dan"
]
},
A.ContributionGroup {
title: qsTr("Swedish")
entries: [
"Åke Engelbrektson",
"Åke Engelbrektson, Allan Nordhøy"
]
},
A.ContributionGroup {
title: qsTr("Spanish")
entries: [
"gallegonovato"
]
},
A.ContributionGroup {
title: qsTr("Russian")
entries: [
"Nikolai Sinyov"
]
},
A.ContributionGroup {
title: qsTr("Norwegian Bokmål")
entries: [
"Allan Nordhøy"
]
},
A.ContributionGroup {
title: qsTr("Italian")
entries: [
"DamnAkhamai"
]
},
A.ContributionGroup {
title: qsTr("Indonesian")
entries: [
"Reza Almanda"
]
},
A.ContributionGroup {
title: qsTr("German")
entries: [
"Gabriel Berkigt",
"Mirian Margiani"
]
},
A.ContributionGroup {
title: qsTr("Finnish")
entries: [
"Matti Viljanen"
]
},
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
]
}