- 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.
-
+
{t('actions.disclaimer')}
-
Import/Export
+
{t('actions.importExport.heading')}
-
- 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.
-
- 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.
-
- This action will reset all your data and remove backups made to your browser's local
- storage as well, so please make sure you have exported your information before you reset
- everything.
-
+
{t('actions.reset.body')}
diff --git a/src/i18n/resources/en/rightSidebar/actions.json b/src/i18n/resources/en/rightSidebar/actions.json
new file mode 100644
index 00000000..7e5b39ff
--- /dev/null
+++ b/src/i18n/resources/en/rightSidebar/actions.json
@@ -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 + P1> 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's local storage as well, so please make sure you have exported your information before you reset everything.",
+ "buttons": {
+ "reset": "Reset"
+ }
+ }
+}
diff --git a/src/i18n/resources/en/rightSidebar/index.js b/src/i18n/resources/en/rightSidebar/index.js
index 3d59d772..275bd62a 100644
--- a/src/i18n/resources/en/rightSidebar/index.js
+++ b/src/i18n/resources/en/rightSidebar/index.js
@@ -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,
};