From 8a81ecf99a1391663da72ff97af6541c2460e44d Mon Sep 17 00:00:00 2001 From: Yuri Chornoivan Date: Wed, 31 Jul 2019 09:07:45 +0300 Subject: [PATCH] Fix minor typo --- src/qml/ConnectionsPage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qml/ConnectionsPage.qml b/src/qml/ConnectionsPage.qml index 8df420e..60451d3 100644 --- a/src/qml/ConnectionsPage.qml +++ b/src/qml/ConnectionsPage.qml @@ -75,7 +75,7 @@ Kirigami.Page } Label { - text: i18np("%1 change", "%2 changes", journey.numberOfChanges) + text: i18np("%1 change", "%1 changes", journey.numberOfChanges) visible: journey.numberOfChanges > 0 } } -- GitLab