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
Kolf
Commits
d2da0d47
Commit
d2da0d47
authored
Nov 14, 2021
by
Laurent Montel
Browse files
Not necessary to use I18N_NOOP here
parent
53a9310c
Pipeline
#97433
passed with stage
in 43 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
main.cpp
View file @
d2da0d47
...
...
@@ -35,9 +35,6 @@
using
namespace
std
;
static
const
char
description
[]
=
I18N_NOOP
(
"KDE Minigolf Game"
);
int
main
(
int
argc
,
char
**
argv
)
{
// Fixes blurry icons with fractional scaling
...
...
@@ -46,7 +43,7 @@ int main(int argc, char **argv)
KLocalizedString
::
setApplicationDomain
(
"kolf"
);
KAboutData
aboutData
(
QStringLiteral
(
"kolf"
),
i18n
(
"Kolf"
),
QStringLiteral
(
KOLF_VERSION_STRING
),
i18n
(
description
),
KAboutLicense
::
GPL
,
i18n
(
"(c) 2002-2010, Kolf developers"
),
QStringLiteral
(
"https://games.kde.org/kolf"
));
KAboutData
aboutData
(
QStringLiteral
(
"kolf"
),
i18n
(
"Kolf"
),
QStringLiteral
(
KOLF_VERSION_STRING
),
i18n
(
"KDE Minigolf Game"
),
KAboutLicense
::
GPL
,
i18n
(
"(c) 2002-2010, Kolf developers"
),
QStringLiteral
(
"https://games.kde.org/kolf"
));
aboutData
.
addAuthor
(
i18n
(
"Stefan Majewsky"
),
i18n
(
"Current maintainer"
),
QStringLiteral
(
"majewsky@gmx.net"
));
aboutData
.
addAuthor
(
i18n
(
"Jason Katz-Brown"
),
i18n
(
"Former main author"
),
QStringLiteral
(
"jasonkb@mit.edu"
));
...
...
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