From 8f5b3c0aa6460be4ef2f11e384fa6cdcc5fdbbe1 Mon Sep 17 00:00:00 2001 From: Yuri Chornoivan Date: Sat, 30 Oct 2021 22:49:28 +0300 Subject: [PATCH] Add i18n() --- src/qml/ErrorNotification.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qml/ErrorNotification.qml b/src/qml/ErrorNotification.qml index c58b0ea5..75b0d040 100644 --- a/src/qml/ErrorNotification.qml +++ b/src/qml/ErrorNotification.qml @@ -27,7 +27,7 @@ Kirigami.InlineMessage { actions: [ Kirigami.Action { icon.name: "error" - text: "Show Error Log" + text: i18n("Show Error Log") onTriggered: errorOverlay.open() } ]