datahub/wherehows-web/app/constants/dataset-compliance.ts

20 lines
895 B
TypeScript
Raw Normal View History

/**
* Defines a map of values for the compliance policy on a dataset
* @type {object}
*/
const compliancePolicyStrings = {
complianceDataException: 'Unexpected discrepancy in compliance data',
missingTypes: 'Looks like you may have forgotten to specify a `Field Format` for all ID fields?',
successUpdating: 'Congrats! Your changes have been successfully saved!',
failedUpdating: 'Oops! We are having trouble updating this dataset at the moment.',
successUploading: 'Metadata successfully updated! Please "Save" when ready.',
invalidPolicyData: 'Received policy in an unexpected format! Please check the provided attributes and try again.',
helpText: {
classification:
'The default value is taken from go/dht and should be good enough in most cases. ' +
'You can optionally override it if required by house security.'
}
};
export { compliancePolicyStrings };