mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-24 15:07:23 +00:00
63 lines
2.4 KiB
JavaScript
63 lines
2.4 KiB
JavaScript
|
|
export const usersText = {
|
|||
|
|
usersElements: {
|
|||
|
|
usersTableNameColumnHeader: "NAME",
|
|||
|
|
usersTableEmailColumnHeader: "EMAIL",
|
|||
|
|
usersTableStatusColumnHeader: "STATUS",
|
|||
|
|
usersFilterLabel: "Showing",
|
|||
|
|
},
|
|||
|
|
usersPageTitle: "users",
|
|||
|
|
breadcrumbUsersPageTitle: " Users",
|
|||
|
|
adminUserName: "The Developer",
|
|||
|
|
adminUserEmail: "[email protected]",
|
|||
|
|
adminUserState: "Archive",
|
|||
|
|
buttonAddUsers: "Add users",
|
|||
|
|
addUsersCardTitle: "Add users",
|
|||
|
|
emailLabel: "Email address",
|
|||
|
|
cancelButton: "Cancel",
|
|||
|
|
buttonInviteUsers: "Invite users",
|
|||
|
|
errorTextFieldRequired: "This field is required",
|
|||
|
|
exsitingEmail:
|
|||
|
|
"Duplicate email found. Please provide a unique email address.",
|
|||
|
|
userCreatedToast: "User has been created",
|
|||
|
|
inviteCopiedToast: "Invitation URL copied",
|
|||
|
|
|
|||
|
|
acceptInvite: "Accept invite",
|
|||
|
|
acceptInviteErrorToast:
|
|||
|
|
"User not exist in the workspace, Please setup your account using link shared via email",
|
|||
|
|
finishSetup: "Finish account setup",
|
|||
|
|
password: "password",
|
|||
|
|
mismatchPassword: "newpassword",
|
|||
|
|
passwordErrToast: "Password shouldn't be empty or contain white space(s)",
|
|||
|
|
passwordMismatchToast: "Passwords don't match",
|
|||
|
|
passwordSuccessToast: "Account has been setup successfully.",
|
|||
|
|
createAppPermissionToast:
|
|||
|
|
"You do not have permissions to perform this action",
|
|||
|
|
activeStatus: "active",
|
|||
|
|
archivedStatus: "archived",
|
|||
|
|
invitedStatus: "invited",
|
|||
|
|
archivedToast: "The user has been archived",
|
|||
|
|
unarchivedToast: "The user has been unarchived",
|
|||
|
|
inviteToast: "Added to the workspace successfully.",
|
|||
|
|
singleWorkspaceElements: {
|
|||
|
|
cardTitle: "Set up your account",
|
|||
|
|
passwordLabel: "Password",
|
|||
|
|
confirmpasswordLabel: "Confirm Password",
|
|||
|
|
termsInfo:
|
|||
|
|
"By clicking the button below, you agree to our Terms and Conditions.",
|
|||
|
|
},
|
|||
|
|
swPasswordSuccessToast:
|
|||
|
|
"Added to the workspace and password has been set successfully.",
|
|||
|
|
inviteBulkUserButton: "Invite bulk users",
|
|||
|
|
bulkUserUploadPageTitle: "Upload Users",
|
|||
|
|
buttonDownloadTemplate: "Download Template",
|
|||
|
|
buttonUploadUsers: "Upload users",
|
|||
|
|
|
|||
|
|
buttonInviteWithEmail: " Invite with email",
|
|||
|
|
buttonUploadCsvFile: "Upload CSV file",
|
|||
|
|
|
|||
|
|
helperTextBulkUpload:
|
|||
|
|
"Download the ToolJet template to add user details or format your file in the same as the template. ToolJet won’t be able to recognise files in any other format. ",
|
|||
|
|
helperTextSelectFile: "Select a CSV file to upload",
|
|||
|
|
helperTextDropFile: "Or drag and drop it here",
|
|||
|
|
};
|