Extract labels

This commit is contained in:
Julia Friesel
2018-08-09 08:36:57 +02:00
parent 77bda6bf53
commit d3d72a396e
2 changed files with 43 additions and 16 deletions
+21 -8
View File
@@ -1,11 +1,24 @@
export const settings = {
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'
shared: {
cancel: 'Cancel'
},
exportTitle: 'My Drip data export',
exportSubject: 'My Drip data export',
exportLabel: 'Export data',
importLabel: 'Import data'
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'
}
}