mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-05 06:18:34 +00:00
* Fix failed profile spec * Modify data-cy of the dashboard section header * Fix manage users spec * Fix user permission spec * Remove single workspace cypress test cases * Add indentation changes * Update self host signup spec * Update cypress config file * adding changes to capture downloads * fix cypress tests for actions * fecth invitation url from the database * database test commit * test commit * test commit * test commit * test commit for pg host * test commit * commit for screenshot * revert test commits * Update sql task name * Add changes for actions * Fix manage groups spec * Update folder structure * Fix user permission spec --------- Co-authored-by: Adish M <[email protected]>
61 lines
2.4 KiB
JavaScript
61 lines
2.4 KiB
JavaScript
export const usersText = {
|
||
usersElements: {
|
||
usersTableNameColumnHeader: "NAME",
|
||
usersTableEmailColumnHeader: "EMAIL",
|
||
usersTableStatusColumnHeader: "STATUS",
|
||
usersFilterLabel: "Showing",
|
||
},
|
||
usersPageTitle: "users",
|
||
breadcrumbUsersPageTitle: " Users & permissions",
|
||
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: "User with such email already exists.",
|
||
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",
|
||
};
|