diff --git a/runners/datetime/datetimerunner.cpp b/runners/datetime/datetimerunner.cpp index e76dba3f37e4703a81d0dd8b52856b7a791f6bb8..64a49f87c3e6f582b4ca270b47390548d16b0044 100644 --- a/runners/datetime/datetimerunner.cpp +++ b/runners/datetime/datetimerunner.cpp @@ -23,9 +23,11 @@ DateTimeRunner::DateTimeRunner(QObject *parent, const KPluginMetaData &metaData, setObjectName(QLatin1String("DataTimeRunner")); addSyntax(Plasma::RunnerSyntax(dateWord, i18n("Displays the current date"))); - addSyntax(Plasma::RunnerSyntax(dateWord + QLatin1String(" :q:"), i18n("Displays the current date in a given timezone"))); addSyntax(Plasma::RunnerSyntax(timeWord, i18n("Displays the current time"))); - addSyntax(Plasma::RunnerSyntax(timeWord + QLatin1String(" :q:"), i18n("Displays the current time in a given timezone"))); + addSyntax(Plasma::RunnerSyntax(dateWord + i18nc("The <> and space are part of the example query", " "), + i18n("Displays the current date in a given timezone"))); + addSyntax(Plasma::RunnerSyntax(timeWord + i18nc("The <> and space are part of the example query", " "), + i18n("Displays the current time in a given timezone"))); setTriggerWords({timeWord, dateWord}); }