mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-05 14:28:42 +00:00
* feat(otel): Add edition-based OpenTelemetry architecture
* Implement Enterprise Edition OpenTelemetry initialization
* init
* flag
* cloud
* cloud changes
* sso
* add IOtelListener interface for OpenTelemetry listeners
* feat(logging): Enhance OpenTelemetry logging details in startup info
* otel
* otel middleware
* fixed
* review changes
* fix
* server/src/otel/audit-metrics.ts
* fix for optional boolean in audut-metrics.ts
* refactor: remove redundant OpenTelemetry middleware application code
* refactor: use ES6 imports instead of require in tracing.ts
* added google and git
* Promote and Release for the app in phase 3 (#14872)
* Promote and Release for the app in phase 3
* fix after product review
* tooltip for app builder
* Removed extra variable
* Revert "tooltip for app builder"
This reverts commit b7079ab7d8.
* changes in BaseManageGroupPermissionResources
* fixed lint issues
---------
Co-authored-by: Pratush <[email protected]>
Co-authored-by: Midhun G S <[email protected]>
* fix: clean up formatting and whitespace in LicenseBase class
* fixed failed cases for license (#15242)
* feat: add customGroups, promote and release feature checks to license utility service
* fix: update group permission logic to exclude end user role
* fix: update granular permissions logic to include feature flag for custom groups
* fix: update permission logic to replace isBasicPlan with isEditable flag
* fix: update permission logic to use isEditable flag instead of isBasicPlan
* fixed failed case
* fix: correct formatting in BASIC_PLAN_TERMS features section
* bump version from 3.20.103-lts to 3.20.104-lts in all components
---------
Co-authored-by: adishM98 Bot <[email protected]>
Co-authored-by: Pratush <[email protected]>
Co-authored-by: gsmithun4 <[email protected]>
Co-authored-by: Pratush Sinha <[email protected]>
Co-authored-by: YuktiGoyal02 <[email protected]>
Co-authored-by: Shantanu Mane <[email protected]>
Co-authored-by: Yukti Goyal <[email protected]>
82 lines
2.1 KiB
JavaScript
82 lines
2.1 KiB
JavaScript
export const licenseText = {
|
|
comparePlansText: "Compare plans",
|
|
license: "License",
|
|
licenseOverviewTitle: "License overview",
|
|
licenseKeyLabel: "License Key",
|
|
limitsTabTitle: "Limits",
|
|
accessTabTitle: "Access",
|
|
domainTabTitle: "Domain",
|
|
updateButton: "Update",
|
|
|
|
licenseKeyTab: {
|
|
licenseKeyTabTitle: "License Key",
|
|
licenseLabel: "License",
|
|
enterLicenseKeyPlaceholder: "Enter license key",
|
|
},
|
|
|
|
limitsTab: {
|
|
aiCreditsSubTab: "AI credits",
|
|
appsSubTab: "Apps",
|
|
workspacesSubTab: "Workspaces",
|
|
usersSubTab: "Users",
|
|
workflowsSubTab: "Workflows",
|
|
tablesSubTab: "Tables",
|
|
},
|
|
|
|
aiCreditsSubTab: {
|
|
monthlyRecurringLabel: "Monthly recurring",
|
|
addOnCreditsLabel: "Add on credits",
|
|
},
|
|
|
|
appsSubTab: {
|
|
noOfAppsLabel: "Number of Apps",
|
|
},
|
|
|
|
workspacesSubTab: {
|
|
noOfWorkspacesLabel: "Number of Workspaces",
|
|
},
|
|
|
|
usersSubTab: {
|
|
noOfTotalUsersLabel: "Number of Total Users",
|
|
noOfBuildersLabel: "Number of Builders",
|
|
noOfEndUsersLabel: "Number of End Users",
|
|
noOfSuperAdminsLabel: "Number of Super Admins",
|
|
},
|
|
|
|
workflowsSubTab: {
|
|
noOfWorkflowsLabel: "Number of Workflows",
|
|
},
|
|
|
|
tablesSubTab: {
|
|
noOfTablesLabel: "Number of Tables",
|
|
},
|
|
|
|
accessTab: {
|
|
customUserGroupsLabel: "Custom user Groups",
|
|
openIDConnectLabel: "Open ID Connect",
|
|
googleLabel: "Google",
|
|
githubLabel: "GitHub",
|
|
ldapLabel: "LDAP",
|
|
samlLabel: "SAML",
|
|
scimLabel: "SCIM",
|
|
apiKeyLabel: "Audit logs",
|
|
observabilityLabel: "Observability",
|
|
externalAPILabel: "External APIs",
|
|
multiEnvironmentLabel: "Multi-Environment",
|
|
gitSyncLabel: "GitSync",
|
|
multiplayerEditingLabel: "Multiplayer editing",
|
|
workflowsLabel: "Workflows",
|
|
promoteLabel: "Promote",
|
|
releaseLabel: "Release",
|
|
modulesLabel: "Modules",
|
|
themesLabel: "Themes",
|
|
customStylesLabel: "Custom styles",
|
|
dynamicAccessRulesLabel: "Dynamic access rules",
|
|
appNavigationGroupLabel: "App navigation group",
|
|
},
|
|
|
|
domainTab: {
|
|
noDomainLinkedLabel: "No Domain Linked",
|
|
noDomainInfoText: "Please contact ToolJet team to link your domain",
|
|
},
|
|
};
|