servicemenuinstaller: Fix placeholders in i18n string

Test Plan: it compiles

Reviewers: #dolphin, aacid

Reviewed By: aacid

Subscribers: aacid, ltoscano, kde-i18n-doc, kfm-devel, #localization

Tags: #dolphin

Differential Revision: https://phabricator.kde.org/D22597
This commit is contained in:
Alexander Potashev 2019-07-20 23:56:35 +03:00
parent aabfce1679
commit 2f5e83419b

View file

@ -205,8 +205,8 @@ bool runInstallerScript(const QString &path, bool hasArgVariants, const QStringL
}
errorText = i18nc(
"%1 = comma separated list of arguments",
"Installer script %1 failed, tried arguments \"%1\".", path, argVariants.join(i18nc("Separator between arguments", "\", \"")));
"%2 = comma separated list of arguments",
"Installer script %1 failed, tried arguments \"%2\".", path, argVariants.join(i18nc("Separator between arguments", "\", \"")));
return false;
}