diff options
-rw-r--r-- | main.qml | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -27,11 +27,11 @@ ApplicationWindow { width: parent.width backButton.visible: false instructionLabel { - text: qsTr("Cukup masukkan nama toko Anda, et voilĂ !") + text: qsTr("Darapsa Shop Maker") font.pointSize: 18 } emailTextField { - placeholderText: "Contoh: Tokomata" + placeholderText: "Shop name" validator: RegularExpressionValidator { regularExpression: /[a-zA-Z0-9]+/ } @@ -39,7 +39,7 @@ ApplicationWindow { loginButton.enabled = !loginButton.enabled } loginButton { - text: qsTr("Mulai berjualan!") + text: qsTr("Make shop") onClicked: { this.enabled = false busy.running = true |