Fix i18n in about item

This commit is contained in:
Martin Gräßlin 2014-03-12 11:11:52 +01:00
parent f934829e0f
commit 8573bb6bed

View file

@ -104,7 +104,7 @@ Rectangle {
}
Text {
id:aboutItem
text: "Author: " + model.AuthorNameRole + "\n" + "License: " + model.LicenseRole
text: i18n("Author: %1\nLicense: %2", model.AuthorNameRole, model.LicenseRole)
font.bold: true
visible: false
}