Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
KAlarm
Commits
375db223
Commit
375db223
authored
Jan 01, 2022
by
Laurent Montel
😁
Browse files
We can use i18n directly
parent
39187e25
Pipeline
#116898
passed with stage
in 1 minute and 41 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/main.cpp
View file @
375db223
...
...
@@ -43,7 +43,7 @@ int main(int argc, char* argv[])
QStringLiteral
(
KALARM_FULL_VERSION
),
i18n
(
"Personal alarm message, command and email scheduler by KDE"
),
KAboutLicense
::
GPL
,
k
i18n
(
"Copyright © 2001-%1, David Jarvie"
).
subs
(
QStringLiteral
(
"2022"
))
.
toString
()
,
QString
());
i18n
(
"Copyright © 2001-%1, David Jarvie"
,
QStringLiteral
(
"2022"
)),
QString
());
aboutData
.
addAuthor
(
i18n
(
"David Jarvie"
),
i18n
(
"Author"
),
QStringLiteral
(
"djarvie@kde.org"
));
aboutData
.
setOrganizationDomain
(
"kde.org"
);
aboutData
.
setDesktopFileName
(
QStringLiteral
(
KALARM_DBUS_SERVICE
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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