diff --git a/nymea-app/ui/components/AWSPasswordTextField.qml b/nymea-app/ui/components/AWSPasswordTextField.qml
index 2188be07..30fc9501 100644
--- a/nymea-app/ui/components/AWSPasswordTextField.qml
+++ b/nymea-app/ui/components/AWSPasswordTextField.qml
@@ -46,7 +46,7 @@ ColumnLayout {
wrapMode: Text.WordWrap
// TRANSLATORS: %1 will be replaced with the normal text color, %2 the color for the length check
- text: qsTr("The password needs to be least 12 characters long, contain lowercase, uppercase letters as well as numbers and special characters.")
+ text: qsTr("The password needs to be at least 12 characters long, contain lowercase, uppercase letters as well as numbers and special characters.")
.arg(app.accentColor)
.arg(!root.isLongEnough ? "red" : app.accentColor)
.arg(!root.hasLower ? "red" : app.accentColor)