Add missing i18n

This commit is contained in:
Nicolas Fella 2020-02-07 14:04:41 +01:00
parent 477d6c1c79
commit 611124df04

View file

@ -91,17 +91,17 @@ Kirigami.ApplicationWindow {
currentIndex: pageStack.currentIndex currentIndex: pageStack.currentIndex
TabButton { TabButton {
text: "Foo" text: i18n("History")
icon.name: "view-pim-contacts" icon.name: "view-pim-contacts"
onClicked: pageStack.currentIndex = 0 onClicked: pageStack.currentIndex = 0
} }
TabButton { TabButton {
text: "Contacts" text: i18n("Contacts")
icon.name: "view-pim-contacts" icon.name: "view-pim-contacts"
onClicked: pageStack.currentIndex = 1 onClicked: pageStack.currentIndex = 1
} }
TabButton { TabButton {
text: "Dialer" text: i18n("Dialer")
icon.name: "view-pim-contacts" icon.name: "view-pim-contacts"
onClicked: pageStack.currentIndex = 2 onClicked: pageStack.currentIndex = 2
} }