This commit is contained in:
Quentin Rouland 2019-03-16 09:02:12 +01:00
parent bd2fa6922e
commit 16f8f70692
3 changed files with 15 additions and 5 deletions

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: utpass.qrouland\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-03-15 16:52+0000\n"
"POT-Creation-Date: 2019-03-15 17:28+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -17,7 +17,7 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../qml/pages/Settings.qml:8 ../qml/pages/headers/MainHeader.qml:19
#: ../qml/pages/Settings.qml:8 ../qml/pages/headers/MainHeader.qml:28
msgid "Settings"
msgstr ""
@ -29,7 +29,7 @@ msgstr ""
msgid "No password found in the current folder"
msgstr ""
#: ../qml/pages/Info.qml:9 ../qml/pages/headers/MainHeader.qml:26
#: ../qml/pages/Info.qml:9 ../qml/pages/headers/MainHeader.qml:35
msgid "Info"
msgstr ""
@ -39,9 +39,10 @@ msgid "UTPass"
msgstr ""
#: ../qml/pages/Info.qml:53
msgid "Suggest improvements or report a bug"
msgid "Suggest improvement(s) or report a bug(s)"
msgstr ""
#: ../qml/pages/headers/MainHeader.qml:15
#: ../qml/pages/headers/MainHeader.qml:19
msgid "Search"
msgstr ""

View File

@ -50,7 +50,7 @@ Page {
}
Link {
url: "https://github.com/QRouland/UTPass/issues"
text: i18n.tr('Suggest improvements or report a bug')
text: i18n.tr('Suggest improvement(s) or report a bug(s)')
}
}
}

View File

@ -13,6 +13,15 @@ PageHeader {
Action {
iconName: "search"
text: i18n.tr("Search")
onTriggered: {
mainHeader.contents = TextField {
id: searchBar
placeholderText: i18n.tr("Search")
height: units.gu(4)
visible: false
anchors.verticalCenter: parent.verticalCenter
}
}
},
Action {
iconName: "settings"