mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +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]>
18 lines
775 B
JavaScript
18 lines
775 B
JavaScript
export const workspaceVarText = {
|
|
workspaceVarPageTitle: "Workspace Variables",
|
|
novariableText:
|
|
"You haven't configured any workspace variables, press the 'Add new variable' button to create one",
|
|
addNewVariableButton: "Add new variable",
|
|
workspaceVarFormTitle: "Add new variable",
|
|
workspaceVarNameLabel: "Name",
|
|
workspaceVarValueLabel: "Value",
|
|
workspaceVarTypeLabel: "Type",
|
|
encryptionToggleLabel: "Enable encryption",
|
|
addVariableButton: "Add variable",
|
|
workspaceVarTableNameHeader: "Name",
|
|
workspaceVarTableValueHeader: "Value",
|
|
workspaceVarTableTypeHeader: "Type",
|
|
workspaceVarCreatedToast: "Variable has been created",
|
|
workspaceVarUpdatedToast: "Variable has been updated",
|
|
workspaceVarDeletedToast: "The variable has been deleted",
|
|
};
|