Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Education
Artikulate
Commits
2b829b13
Commit
2b829b13
authored
Nov 03, 2022
by
Andreas Cord-Landwehr
Browse files
Update copyright information
parent
3e07c99f
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/main.cpp
View file @
2b829b13
...
...
@@ -5,15 +5,14 @@
*/
#include
"application.h"
#include
"artikulate_debug.h"
#include
"mainwindow.h"
#include
"version.h"
#include
"artikulate_debug.h"
#include
<KAboutData>
#include
<KCrash>
#include
<KLocalizedString>
#include
<QIcon>
#include
<QCommandLineParser>
#include
<QIcon>
int
main
(
int
argc
,
char
**
argv
)
{
...
...
@@ -29,17 +28,25 @@ int main(int argc, char **argv)
ARTIKULATE_VERSION_STRING
,
i18nc
(
"@title KAboutData: short program description"
,
"Artikulate Pronunciation Trainer"
),
KAboutLicense
::
GPL_V2
,
i18nc
(
"@info:credit"
,
"(c) 2013-202
0
The Artikulate Developers"
),
i18nc
(
"@info:credit"
,
"(c) 2013-202
2
The Artikulate Developers"
),
i18nc
(
"@title Short program description"
,
"Train your pronunciation in a foreign language."
));
aboutData
.
setProgramLogo
(
app
.
windowIcon
());
aboutData
.
addAuthor
(
i18nc
(
"@info:credit Developer name"
,
"Andreas Cord-Landwehr"
),
i18nc
(
"@info:credit Role"
,
"Original Author"
),
QStringLiteral
(
"cordlandwehr@kde.org"
));
aboutData
.
addAuthor
(
i18nc
(
"@info:credit Developer name"
,
"Andreas Cord-Landwehr"
),
i18nc
(
"@info:credit Role"
,
"Original Author"
),
QStringLiteral
(
"cordlandwehr@kde.org"
));
aboutData
.
addAuthor
(
i18nc
(
"@info:credit Developer name"
,
"Samikshan Bairagya"
),
i18nc
(
"@info:credit Role"
,
"Developer"
),
QStringLiteral
(
"samikshan@gmail.com"
));
aboutData
.
addAuthor
(
i18nc
(
"@info:credit Developer name"
,
"Samikshan Bairagya"
),
i18nc
(
"@info:credit Role"
,
"Developer"
),
QStringLiteral
(
"samikshan@gmail.com"
));
aboutData
.
addAuthor
(
i18nc
(
"@info:credit Developer name"
,
"Oindrila Gupta"
),
i18nc
(
"@info:credit Role"
,
"Developer and Course Data"
),
QStringLiteral
(
"edu@kde.org"
));
aboutData
.
addAuthor
(
i18nc
(
"@info:credit Developer name"
,
"Oindrila Gupta"
),
i18nc
(
"@info:credit Role"
,
"Developer and Course Data"
),
QStringLiteral
(
"edu@kde.org"
));
aboutData
.
addAuthor
(
i18nc
(
"@info:credit Developer name"
,
"Magdalena Konkiewicz"
),
i18nc
(
"@info:credit Role"
,
"Developer and Course Data"
),
QStringLiteral
(
"edu@kde.org"
));
aboutData
.
addAuthor
(
i18nc
(
"@info:credit Developer name"
,
"Magdalena Konkiewicz"
),
i18nc
(
"@info:credit Role"
,
"Developer and Course Data"
),
QStringLiteral
(
"edu@kde.org"
));
aboutData
.
setTranslator
(
i18nc
(
"NAME OF TRANSLATORS"
,
"Your names"
),
i18nc
(
"EMAIL OF TRANSLATORS"
,
"Your emails"
));
...
...
@@ -49,7 +56,7 @@ int main(int argc, char **argv)
parser
.
process
(
app
);
aboutData
.
processCommandLine
(
&
parser
);
KCrash
::
initialize
();
new
MainWindow
()
;
MainWindow
window
;
return
app
.
exec
();
}
src/main_editor.cpp
View file @
2b829b13
...
...
@@ -27,10 +27,12 @@ int main(int argc, char **argv)
ARTIKULATE_VERSION_STRING
,
ki18nc
(
"@title KAboutData: short program description"
,
"Artikulate Course Editor"
).
toString
(),
KAboutLicense
::
GPL_V2
,
ki18nc
(
"@info:credit"
,
"(c) 2013-20
19
The Artikulate Developers"
).
toString
(),
ki18nc
(
"@info:credit"
,
"(c) 2013-20
22
The Artikulate Developers"
).
toString
(),
ki18nc
(
"@title Short program description"
,
"Edit Artikulate course files."
).
toString
());
aboutData
.
addAuthor
(
ki18nc
(
"@info:credit Developer name"
,
"Andreas Cord-Landwehr"
).
toString
(),
ki18nc
(
"@info:credit Role"
,
"Original Author"
).
toString
(),
QStringLiteral
(
"cordlandwehr@kde.org"
));
aboutData
.
addAuthor
(
ki18nc
(
"@info:credit Developer name"
,
"Andreas Cord-Landwehr"
).
toString
(),
ki18nc
(
"@info:credit Role"
,
"Original Author"
).
toString
(),
QStringLiteral
(
"cordlandwehr@kde.org"
));
KAboutData
::
setApplicationData
(
aboutData
);
KCrash
::
initialize
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment