43 lines
1.4 KiB
JavaScript
43 lines
1.4 KiB
JavaScript
export const settings = {
|
|
shared: {
|
|
cancel: 'Cancel',
|
|
errorTitle: 'Error',
|
|
successTitle: 'Success'
|
|
},
|
|
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',
|
|
segmentExplainer: 'Export data in CSV format for backup or so you can use it elsewhere'
|
|
},
|
|
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',
|
|
errors: {
|
|
couldNotOpenFile: 'Could not open file',
|
|
postFix: 'No data was imported or changed'
|
|
},
|
|
success: {
|
|
message: 'Data successfully imported'
|
|
},
|
|
segmentExplainer: 'Import data in CSV format'
|
|
},
|
|
tempScale: {
|
|
segmentTitle: 'Temperature scale',
|
|
segmentExplainer: 'Change the minimum and maximum value for entered temperatures',
|
|
min: 'Min',
|
|
max: 'Max',
|
|
loadError: 'Could not load saved temperature scale settings',
|
|
saveError: 'Could not save temperature scale settings'
|
|
}
|
|
} |