ToolJet/cypress-tests/cypress/constants/texts/dashboard.js
Ajith KV 142d54bc50
Fixed failing profile cypress spec (#6245)
* 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]>
2023-05-09 19:33:37 +05:30

52 lines
1.5 KiB
JavaScript

export const dashboardText = {
emptyPageHeader: "Welcome to your new ToolJet workspace",
emptyPageDescription:
"You can get started by creating a new application or by creating an application using a template in ToolJet Library.",
createAppButton: "Create new application",
importAppButton: "Import an app",
chooseFromTemplate: "Choose from template",
darkMode: "#808080",
lightMode: "#fff",
dropdownText: "My workspace",
editButton: "Edit",
manageUsers: "Manage Users",
manageGroups: "Manage Groups",
manageSSO: "Manage SSO",
profileLink: "Profile",
logoutLink: "Logout",
changeIconTitle: "Change Icon",
changeButton: "Change",
iconUpdatedToast: "Icon updated.",
iconText: {
appsIcon: "apps",
archiveIcon: "archive",
floppyIcon: "floppy",
layerIcon: "layer",
folderUpload: "folder-upload",
gridIcon: "grid",
homeIcon: "home",
sentFastIcon: "sent-fast",
serverIcon: "server",
globeIcon: "globe",
shareIcon: "share",
shieldIcon: "shield",
sunIcon: "sun",
tableIcon: "table",
menuHomeIcon: "menu-home",
dragHandleIcon: "drag-handle",
},
seeAllAppsTemplateButton: "See all templates",
addToFolderTitle: "Add to folder",
appClonedToast: "App cloned successfully.",
darkModeText: "Dark Mode",
lightModeText: "Light Mode",
dashboardAppsHeaderLabel: " All apps",
moveAppText: (appName) => {
return `Move "${appName}" to`;
},
addToFolderButton: "Add to folder",
folderName: (folderName) => {
return folderName;
},
};