feat: add user management (#134)

This commit is contained in:
Manuel
2024-02-20 21:18:47 +01:00
committed by GitHub
parent fde634d834
commit b4749e7091
12 changed files with 614 additions and 48 deletions

View File

@@ -147,6 +147,8 @@ export default {
saveChanges: "Save changes",
cancel: "Cancel",
confirm: "Confirm",
previous: "Previous",
next: "Next",
},
multiSelect: {
placeholder: "Pick one or more values",
@@ -394,6 +396,50 @@ export default {
},
},
},
user: {
list: {
metaTitle: "Manage users",
title: "Users",
},
edit: {
metaTitle: "Edit user {username}",
},
create: {
metaTitle: "Create user",
title: "Create new user",
step: {
personalInformation: {
label: "Personal information",
field: {
username: {
label: "Username",
},
email: {
label: "E-Mail",
},
},
},
preferences: {
label: "Preferences",
description: "Coming soon",
},
permissions: {
label: "Permissions",
description: "Coming soon",
},
review: {
label: "Review",
},
completed: {
title: "User created",
},
},
buttons: {
createAnother: "Create another user",
return: "Return to the user list",
},
},
},
},
},
} as const;