From f1e96f7640c0d4d297eca3e69490bc8e05514f66 Mon Sep 17 00:00:00 2001 From: ivan tkachenko Date: Tue, 25 Apr 2023 17:48:09 +0600 Subject: [PATCH] plugins/share: Escape literal %percent character in i18n string The QML config file is not used anywhere for now, and C++ counterpart already has it properly escaped. --- plugins/share/kdeconnect_share_config.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/share/kdeconnect_share_config.qml b/plugins/share/kdeconnect_share_config.qml index 44c6ba259..12cb7fa35 100644 --- a/plugins/share/kdeconnect_share_config.qml +++ b/plugins/share/kdeconnect_share_config.qml @@ -54,6 +54,6 @@ Kirigami.FormLayout { } QQC2.Label { - text: i18n("%1 in the path will be replaced with the specific device name") + text: i18n("%1 in the path will be replaced with the specific device name") } }