mirror of
https://github.com/bellingcat/datasheet-server.git
synced 2026-06-10 20:38:32 +03:00
15 lines
722 B
JavaScript
15 lines
722 B
JavaScript
export default {
|
|
errors: {
|
|
update: 'The server could not update. Check your API credentials and internet connection and try again.',
|
|
onlySheet: 'You cannot query a sheet directly. The URL needs to be in the format /:sheet/:tab/:resource.',
|
|
onlyTab: 'You cannot query a tab directly. The URL needs to be in the format /:sheet/:tab/:resource.',
|
|
noSheet: sheet => `The sheet ${sheet} is not available in this server.`,
|
|
noResource: prts => `The resource '${prts[2]}' does not exists in the tab '${prts[1]}' in this sheet.`,
|
|
noFragment: prts => `Fragment index does not exist`,
|
|
modelLayer: prts => `Something went wrong at the model layer`
|
|
},
|
|
success: {
|
|
update: 'All sheets updated'
|
|
}
|
|
}
|