2017-07-18 15:01:28 -07:00
|
|
|
/**
|
|
|
|
|
* 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 some fields may contain privacy data but do not have a specified `Field Format`?',
|
2017-08-30 10:26:44 -07:00
|
|
|
successUpdating: 'Congrats! Your changes have been successfully saved!',
|
2017-07-18 15:01:28 -07:00
|
|
|
failedUpdating: 'Oops! We are having trouble updating this dataset at the moment.',
|
2017-08-30 10:26:44 -07:00
|
|
|
successUploading: 'Metadata successfully updated! Please "Save" when ready.',
|
|
|
|
|
invalidPolicyData: 'Received policy in an unexpected format! Please check the provided attributes and try again.',
|
2017-07-18 15:01:28 -07:00
|
|
|
helpText: {
|
|
|
|
|
classification:
|
|
|
|
|
'The default value is taken from go/dht and should be good enough in most cases. ' +
|
2017-08-30 10:26:44 -07:00
|
|
|
'You can optionally override it if required by house security.'
|
2017-07-18 15:01:28 -07:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export { compliancePolicyStrings };
|