Files
drip/components/labels.js
T
Julia Friesel d3d72a396e Extract labels
2018-08-16 08:26:08 +02:00

24 lines
733 B
JavaScript

export const settings = {
shared: {
cancel: 'Cancel'
},
export: {
errors: {
noData: 'There is no data to export',
couldNotConvert: 'Could not convert data to CSV',
problemSharing: 'There was a problem sharing the data export file'
},
title: 'My Drip data export',
subject: 'My Drip data export',
button: 'Export data',
},
import: {
button: 'Import data',
title: 'Keep existing data?',
message: `There are two options for the import:
1. Keep existing cycle days and replace only the ones in the import file.
2. Delete all existing cycle days and import cycle days from file.`,
replaceOption: 'Import and replace',
deleteOption: 'Import and delete existing'
}
}