From 611124df04f788e1729956099e44f4ea4319e500 Mon Sep 17 00:00:00 2001 From: Nicolas Fella Date: Fri, 7 Feb 2020 14:04:41 +0100 Subject: [PATCH] Add missing i18n --- dialer/src/qml/main.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dialer/src/qml/main.qml b/dialer/src/qml/main.qml index d071997a..71836f81 100644 --- a/dialer/src/qml/main.qml +++ b/dialer/src/qml/main.qml @@ -91,17 +91,17 @@ Kirigami.ApplicationWindow { currentIndex: pageStack.currentIndex TabButton { - text: "Foo" + text: i18n("History") icon.name: "view-pim-contacts" onClicked: pageStack.currentIndex = 0 } TabButton { - text: "Contacts" + text: i18n("Contacts") icon.name: "view-pim-contacts" onClicked: pageStack.currentIndex = 1 } TabButton { - text: "Dialer" + text: i18n("Dialer") icon.name: "view-pim-contacts" onClicked: pageStack.currentIndex = 2 }