mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-04 22:08:29 +00:00
* Frontend: Add new plugin babel-plugin-istanbul * Frontend: Add plugin to babel config * Cypress: Add new plugin code-coverage * Cypress: Add plugin to common cypress suite * Cypress: Add reports to .gitignore * Actions: Add new action to check coverage * Cypress: minor config changes * test * test-2 * Action: Add verification for generated coverage files * Modify action file * Modify action file with command changes * debug commit * debug commit-2 * debug commit-3 * Update runjsHappyPath.cy.js * debug commit-4 * Revert "debug commit-5" This reverts commit8b795d86ae. * Revert "debug commit-3" This reverts commitd2e440e04b. * Add action name * Fix marketplace specs * Fix query failures * Add review changes * Add cypress package.lock changes * Add frontend package.lock changes * Add cypress minor package.lock changes * Minor action changes
80 lines
2.5 KiB
JavaScript
80 lines
2.5 KiB
JavaScript
export const postgreSqlText = {
|
|
labelDataSources: "Datasources",
|
|
labelAddDataSource: "+ add data source",
|
|
|
|
allDataSources: () => {
|
|
return process.env.NODE_ENV === "development"
|
|
? "All data sources (41)"
|
|
: "All data sources (43)";
|
|
},
|
|
allDatabase: () => {
|
|
return process.env.NODE_ENV === "development"
|
|
? "Databases (17)"
|
|
: "Databases (19)";
|
|
},
|
|
allApis: "APIs (20)",
|
|
allCloudStorage: "Cloud Storages (4)",
|
|
|
|
postgreSQL: "PostgreSQL",
|
|
labelHost: "Host",
|
|
labelPort: "Port",
|
|
labelSSL: "SSL",
|
|
labelDbName: "Database Name",
|
|
labelUserName: "Username",
|
|
labelPassword: "Password",
|
|
label: "Encrypted",
|
|
sslCertificate: "SSL Certificate",
|
|
whiteListIpText:
|
|
"Please white-list our IP address if the data source is not publicly accessible",
|
|
textCopy: "Copy",
|
|
readDocumentation: "Read documentation",
|
|
couldNotConnect: "could not connect",
|
|
buttonTextSave: "Save",
|
|
serverNotSuppotSsl: "The server does not support SSL connections",
|
|
psqlName: "cypress-postgresql",
|
|
|
|
labelConnectionVerified: "connection verified",
|
|
toastDSAdded: "Data Source Added",
|
|
placeholderNameOfDB: "Name of the database",
|
|
placeholderEnterHost: "Enter host",
|
|
placeholderEnterPort: "Enter port",
|
|
placeholderEnterUserName: "Enter username",
|
|
|
|
headerQueries: "Queries",
|
|
headerSelectDatasource: "Select Data Source",
|
|
noQueryText: "You haven't created queries yet.",
|
|
buttonLabelCreateQuery: "Create query",
|
|
tabGeneral: "General",
|
|
firstQueryName: "postgresql1",
|
|
buttonLabelPreview: "Preview",
|
|
buttonLabelCreateAndRun: "Create & Run",
|
|
buttonLabelCreate: "Create",
|
|
queryModeSql: "SQL mode",
|
|
queryModeGui: "GUI mode",
|
|
|
|
headerTransformations: "Enable Transformations",
|
|
json: "JSON",
|
|
raw: "Raw",
|
|
|
|
labelOperation: "Operation",
|
|
labelTable: "Table",
|
|
labelPrimaryKeyColumn: "Primary key column",
|
|
labelRecordsToUpdate: "Records to update",
|
|
|
|
toggleLabelRunOnPageLoad: "Run this query on application load?",
|
|
toggleLabelconfirmation: "Request confirmation before running query?",
|
|
toggleLabelShowNotification: "Show notification on success?",
|
|
labelSuccessMessage: "Success Message",
|
|
labelNotificatioDuration: "Notification duration (s)",
|
|
|
|
dialogueTextDelete: "Do you really want to delete this query?",
|
|
cancel: "Cancel",
|
|
yes: "Yes",
|
|
|
|
guiOptionBulkUpdate: "Bulk update using primary key",
|
|
buttonTextTestConnection: "Test Connection",
|
|
|
|
tabAdvanced: "Advanced",
|
|
labelNoEventhandler: "No event handlers",
|
|
toastDSSaved: "Data Source Saved",
|
|
};
|