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
Games
KNetWalk
Commits
99f382be
Commit
99f382be
authored
Nov 15, 2021
by
Laurent Montel
Browse files
Not neccessary to use I18N_NOOP here
parent
b03e4a13
Pipeline
#97945
passed with stage
in 1 minute and 6 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/main.cpp
View file @
99f382be
...
...
@@ -28,14 +28,6 @@
#include
<QCommandLineParser>
static
const
char
description
[]
=
I18N_NOOP
(
"KNetWalk, a game for system administrators."
);
static
const
char
copyleft
[]
=
I18N_NOOP
(
"(C) 2004-2005 Andi Peredri, ported to KDE by Thomas Nagy
\n
"
"(C) 2007-2008 Fela Winkelmolen
\n
"
"(C) 2013 Ashwin Rajeev"
);
int
main
(
int
argc
,
char
**
argv
)
{
// Fixes blurry icons with fractional scaling
...
...
@@ -50,8 +42,10 @@ int main(int argc, char ** argv)
migrate
.
migrate
();
KAboutData
about
(
QStringLiteral
(
"knetwalk"
),
i18n
(
"KNetWalk"
),
QStringLiteral
(
KNETWALK_VERSION_STRING
),
i18n
(
description
),
KAboutLicense
::
GPL
,
i18n
(
copyleft
),
QString
(),
QStringLiteral
(
KNETWALK_VERSION_STRING
),
i18n
(
"KNetWalk, a game for system administrators."
),
KAboutLicense
::
GPL
,
i18n
(
"(C) 2004-2005 Andi Peredri, ported to KDE by Thomas Nagy
\n
"
"(C) 2007-2008 Fela Winkelmolen
\n
"
"(C) 2013 Ashwin Rajeev"
),
QString
(),
QStringLiteral
(
"https://kde.org/applications/games/org.kde.knetwalk"
));
about
.
addAuthor
(
i18n
(
"Andi Peredri"
),
...
...
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