2023-08-14 09:16:16 +00:00
|
|
|
export const workspaceConstantsText = {
|
|
|
|
|
workspaceConstantsHelperText:
|
2024-12-06 12:03:32 +00:00
|
|
|
"To resolve a global workspace constant use {{constants.access_token}}",
|
2025-01-27 06:42:24 +00:00
|
|
|
secretsConstantInfo: "To resolve a secret workspace constant use {{secrets.access_token}}Read documentation",
|
2023-08-14 09:16:16 +00:00
|
|
|
emptyStateHeader: "No Workspace constants yet",
|
|
|
|
|
emptyStateText:
|
2025-08-03 07:09:18 +00:00
|
|
|
"Use workspace constants seamlessly within both the app builder and data source connections across the platform.",
|
2024-12-06 12:03:32 +00:00
|
|
|
addNewConstantButton: "+ Create new constant",
|
2023-08-14 09:16:16 +00:00
|
|
|
addConstatntText: "Add new constant in production ",
|
2024-12-06 12:03:32 +00:00
|
|
|
constantCreatedToast: (type) => { return `${type} constant created successfully!` },
|
2025-01-16 06:10:26 +00:00
|
|
|
secretConstantCreatedToast: "Secret constant created successfully!",
|
2025-01-27 06:42:24 +00:00
|
|
|
constantsExisitToast: (type) => { return `${type} constant already exists!` },
|
|
|
|
|
workspaceConstantsHelperText: "To resolve a global workspace constant use",
|
|
|
|
|
nameFieldHelperText: 'Name must be unique and max 50 characters',
|
|
|
|
|
globalConstHelperText: 'The values can be used anywhere in the product',
|
|
|
|
|
secretsConstHelperText: 'The values are hidden and can only be used in data sources and queries',
|
|
|
|
|
addConstantButton: 'Add constant',
|
|
|
|
|
noResultFoundHeader: 'No workspace constants found',
|
2025-01-30 06:42:29 +00:00
|
|
|
secretsHiddenText: 'Values of secret constants are hidden',
|
2023-08-14 09:16:16 +00:00
|
|
|
};
|