extract strings from actions tab

This commit is contained in:
Amruth Pillai
2020-03-30 11:32:32 +05:30
parent 154e4d22a8
commit af3ec283d0
4 changed files with 64 additions and 32 deletions

View File

@ -0,0 +1,33 @@
{
"title": "Actions",
"disclaimer": "Changes you make to your resume are saved automatically to your browser's local storage. No data gets out, hence your information is completely secure.",
"importExport": {
"heading": "Import/Export",
"body": "You can import or export your data in JSON format. With this, you can edit and print your resume from any device. Save this file for later use.",
"buttons": {
"import": "Import",
"export": "Export"
}
},
"printResume": {
"heading": "Print Your Resume",
"body": "You can simply press <1>Cmd/Ctrl + P</1> at any time while you're in the app to print your resume, but here's a fancy button to do the same thing, just 'cause.",
"buttons": {
"print": "Print"
}
},
"loadDummyData": {
"heading": "Load Dummy Data",
"body": "Unclear on what to do with a fresh blank page? Load some dummy data with pre-populated values to see how a resume should look and you can start editing from there.",
"buttons": {
"loadData": "Populate Data"
}
},
"reset": {
"heading": "Reset Everything!",
"body": "This action will reset all your data and remove backups made to your browser&apos;s local storage as well, so please make sure you have exported your information before you reset everything.",
"buttons": {
"reset": "Reset"
}
}
}

View File

@ -1,9 +1,11 @@
import templates from './templates.json';
import colors from './colors.json';
import fonts from './fonts.json';
import actions from './actions.json';
export default {
templates,
colors,
fonts,
actions,
};