2022-08-04 15:10:46 +00:00
|
|
|
export const dashboardText = {
|
2023-02-09 10:56:10 +00:00
|
|
|
emptyPageHeader: "Welcome to your new ToolJet workspace",
|
2022-08-04 15:10:46 +00:00
|
|
|
emptyPageDescription:
|
|
|
|
|
"You can get started by creating a new application or by creating an application using a template in ToolJet Library.",
|
2023-05-03 14:23:08 +00:00
|
|
|
createAppButton: "Create new application",
|
|
|
|
|
importAppButton: "Import an app",
|
2022-05-18 08:34:45 +00:00
|
|
|
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",
|
2022-08-04 15:10:46 +00:00
|
|
|
changeIconTitle: "Change Icon",
|
|
|
|
|
changeButton: "Change",
|
|
|
|
|
iconUpdatedToast: "Icon updated.",
|
|
|
|
|
iconText: {
|
|
|
|
|
appsIcon: "apps",
|
2023-05-03 14:23:08 +00:00
|
|
|
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",
|
2023-05-09 14:03:37 +00:00
|
|
|
dragHandleIcon: "drag-handle",
|
2022-08-04 15:10:46 +00:00
|
|
|
},
|
2023-02-09 10:56:10 +00:00
|
|
|
seeAllAppsTemplateButton: "See all templates",
|
2022-08-04 15:10:46 +00:00
|
|
|
addToFolderTitle: "Add to folder",
|
2023-10-17 12:28:12 +00:00
|
|
|
appClonedToast: "App cloned successfully!",
|
2023-02-09 10:56:10 +00:00
|
|
|
darkModeText: "Dark Mode",
|
|
|
|
|
lightModeText: "Light Mode",
|
2023-05-03 14:23:08 +00:00
|
|
|
dashboardAppsHeaderLabel: " All apps",
|
2023-05-09 14:03:37 +00:00
|
|
|
|
2022-08-04 15:10:46 +00:00
|
|
|
moveAppText: (appName) => {
|
|
|
|
|
return `Move "${appName}" to`;
|
|
|
|
|
},
|
|
|
|
|
addToFolderButton: "Add to folder",
|
|
|
|
|
folderName: (folderName) => {
|
|
|
|
|
return folderName;
|
|
|
|
|
},
|
|
|
|
|
};
|