♻️ Address pull request feedback

This commit is contained in:
Meier Lukas
2023-08-06 14:12:39 +02:00
parent 4b2c5f2816
commit 9e576f1498
53 changed files with 934 additions and 746 deletions
@@ -0,0 +1,62 @@
{
"metaTitle": "Create user",
"steps": {
"account": {
"title": "First step",
"text": "Create account",
"username": {
"label": "Username"
},
"email": {
"label": "E-Mail"
}
},
"security": {
"title": "Second step",
"text": "Password",
"password": {
"label": "Password",
"requirements": {
"number": "Includes number",
"lowercase": "Includes lowercase letter",
"uppercase": "Includes uppercase letter",
"special": "Includes special character",
"length": "Includes at least {{count}} characters"
}
}
},
"finish": {
"title": "Final step",
"text": "Save to database",
"card": {
"title": "Review your inputs",
"text": "After you submit your data to the database, the user will be able to log in. Are you sure that you want to store this user in the database and activate the login?"
},
"table": {
"header": {
"property": "Property",
"value": "Value",
"username": "Username",
"email": "E-Mail",
"password": "Password"
},
"notSet": "Not set",
"valid": "Valid"
}
},
"completed": {
"alert": {
"title": "User was created",
"text": "The user was created in the database. They can now log in."
}
}
},
"buttons": {
"next": "Next",
"previous": "Previous",
"confirm": "Confirm",
"generateRandomPassword": "Generate random",
"createAnother": "Create another",
"goBack": "Go back to users"
}
}
@@ -0,0 +1,50 @@
{
"metaTitle": "User invites",
"pageTitle": "Manage user invites",
"description": "Using invites, you can invite users to your Homarr instance. An invitation will only be valid for a certain time-span and can be used once. The expiration must be between 5 minutes and 12 months upon creation.",
"button": {
"createInvite": "Create invitation",
"deleteInvite": "Delete invite"
},
"table": {
"header": {
"id": "ID",
"creator": "Creator",
"expires": "Expires",
"action": "Actions"
},
"data": {
"expiresAt": "expired {{at}}",
"expiresIn": "in {{in}}"
}
},
"modals": {
"create": {
"title": "Create invite",
"description": "After the expiration, an invite will no longer be valid and the recipient of the invite won't be able to create an account.",
"form": {
"expires": {
"label": "Expiration date"
},
"submit": "Create"
}
},
"copy": {
"title": "Copy invitation",
"description": "Your invitation has been generated. After this modal closes, <b>you'll not be able to copy this link anymore</b>. If you do no longer wish to invite said person, you can delete this invitation any time.",
"invitationLink": "Invitation link",
"details": {
"id": "ID",
"token": "Token"
},
"button": {
"close": "Copy & Dismiss"
}
},
"delete": {
"title": "Delete invite",
"description": "Are you sure, that you want to delete this invitation? Users with this link will no longer be able to create an account using that link."
}
},
"noInvites": "There are no invitations yet."
}