diff --git a/docs/translation/README.md b/docs/translation/README.md index d6f5370d..e955181d 100644 --- a/docs/translation/README.md +++ b/docs/translation/README.md @@ -29,6 +29,8 @@ If you are already familiar with the Crowdin platform and want to contribute you - Polish `pl` - Portuguese `pt` - Spanish `es` +- Tamil `ta` +- Vietnamese `vi` ### Pending Translations @@ -50,10 +52,8 @@ If you are already familiar with the Crowdin platform and want to contribute you - Romanian `ro` - Russian `ru` - Swedish `sv` -- Tamil `ta` - Turkish `tr` - Ukrainian `uk` -- Vietnamese `vi` ::: warning If your language is not available in the list above, send me an email at im.amruth@gmail.com with your request or raise an issue on GitHub and I'll add it on the Crowdin Platform. diff --git a/package-lock.json b/package-lock.json index 810a1c6c..b87843bb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8708,12 +8708,12 @@ "@babel/runtime": "^7.5.5" } }, - "i18next-xhr-backend": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/i18next-xhr-backend/-/i18next-xhr-backend-3.2.2.tgz", - "integrity": "sha512-OtRf2Vo3IqAxsttQbpjYnmMML12IMB5e0fc5B7qKJFLScitYaXa1OhMX0n0X/3vrfFlpHL9Ro/H+ps4Ej2j7QQ==", + "i18next-http-backend": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/i18next-http-backend/-/i18next-http-backend-1.0.4.tgz", + "integrity": "sha512-nnaCLtUIarFoQv1NNzN1I/TPyDRbHnq2gb5Lnf/rZBiWNJ6BdPXY0kpY1oxLIFTkwHvXJLoD9O6vVUDSXhnUjQ==", "requires": { - "@babel/runtime": "^7.5.5" + "node-fetch": "2.6.0" } }, "iconv-lite": { @@ -11427,6 +11427,11 @@ "lodash.toarray": "^4.4.0" } }, + "node-fetch": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.0.tgz", + "integrity": "sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA==" + }, "node-forge": { "version": "0.9.0", "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.9.0.tgz", diff --git a/package.json b/package.json index b8f950ba..72ac596a 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "html2canvas": "^1.0.0-rc.5", "i18next": "^19.4.3", "i18next-browser-languagedetector": "^4.1.1", - "i18next-xhr-backend": "^3.2.2", + "i18next-http-backend": "^1.0.4", "jspdf": "^1.5.3", "lodash": "^4.17.15", "postcss-cli": "^7.1.0", diff --git a/src/i18n/index.js b/src/i18n/index.js index 050f7c4b..2ffba974 100644 --- a/src/i18n/index.js +++ b/src/i18n/index.js @@ -1,5 +1,5 @@ import i18n from 'i18next'; -import backend from 'i18next-xhr-backend'; +import backend from 'i18next-http-backend'; import { initReactI18next } from 'react-i18next'; import detector from 'i18next-browser-languagedetector'; @@ -8,56 +8,60 @@ import resources from './locales'; const languages = [ { code: 'ar', - name: 'Arabic', + name: 'Arabic (عربى)', }, { code: 'zh', - name: 'Chinese', + name: 'Chinese (中文)', }, { code: 'da', - name: 'Danish', + name: 'Danish (Dansk)', }, { code: 'nl', - name: 'Dutch', + name: 'Dutch (Nederlands)', }, { code: 'en', - name: 'English', + name: 'English (US)', }, { code: 'fr', - name: 'French', + name: 'French (Français)', }, { code: 'de', - name: 'German', + name: 'German (Deutsche)', }, { code: 'hi', - name: 'Hindi', + name: 'Hindi (हिन्दी)', }, { code: 'kn', - name: 'Kannada', + name: 'Kannada (ಕನ್ನಡ)', }, { code: 'pl', - name: 'Polish', + name: 'Polish (Polskie)', }, { code: 'pt', - name: 'Portuguese', + name: 'Portuguese (Português)', }, { code: 'es', - name: 'Spanish', + name: 'Spanish (Español)', + }, + { + code: 'ta', + name: 'Tamil (தமிழ்)', }, { code: 'vi', - name: 'Tiếng Việt' - } + name: 'Vietnamese (Tiếng Việt)', + }, ]; i18n diff --git a/src/i18n/locales/af/leftSidebar/index.js b/src/i18n/locales/af/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/af/leftSidebar/index.js +++ b/src/i18n/locales/af/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/af/leftSidebar/skills.json b/src/i18n/locales/af/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/af/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/ar/leftSidebar/index.js b/src/i18n/locales/ar/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/ar/leftSidebar/index.js +++ b/src/i18n/locales/ar/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/ar/leftSidebar/skills.json b/src/i18n/locales/ar/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/ar/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/as/leftSidebar/index.js b/src/i18n/locales/as/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/as/leftSidebar/index.js +++ b/src/i18n/locales/as/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/as/leftSidebar/skills.json b/src/i18n/locales/as/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/as/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/ca/leftSidebar/index.js b/src/i18n/locales/ca/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/ca/leftSidebar/index.js +++ b/src/i18n/locales/ca/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/ca/leftSidebar/skills.json b/src/i18n/locales/ca/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/ca/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/cs/leftSidebar/index.js b/src/i18n/locales/cs/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/cs/leftSidebar/index.js +++ b/src/i18n/locales/cs/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/cs/leftSidebar/skills.json b/src/i18n/locales/cs/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/cs/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/da/leftSidebar/index.js b/src/i18n/locales/da/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/da/leftSidebar/index.js +++ b/src/i18n/locales/da/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/da/leftSidebar/skills.json b/src/i18n/locales/da/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/da/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/de/leftSidebar/index.js b/src/i18n/locales/de/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/de/leftSidebar/index.js +++ b/src/i18n/locales/de/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/de/leftSidebar/skills.json b/src/i18n/locales/de/leftSidebar/skills.json deleted file mode 100644 index 111c068b..00000000 --- a/src/i18n/locales/de/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Kochen" - } -} diff --git a/src/i18n/locales/el/leftSidebar/index.js b/src/i18n/locales/el/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/el/leftSidebar/index.js +++ b/src/i18n/locales/el/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/el/leftSidebar/skills.json b/src/i18n/locales/el/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/el/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/en/leftSidebar/index.js b/src/i18n/locales/en/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/en/leftSidebar/index.js +++ b/src/i18n/locales/en/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/en/leftSidebar/skills.json b/src/i18n/locales/en/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/en/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/es/leftSidebar/index.js b/src/i18n/locales/es/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/es/leftSidebar/index.js +++ b/src/i18n/locales/es/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/es/leftSidebar/skills.json b/src/i18n/locales/es/leftSidebar/skills.json deleted file mode 100644 index 1b69082b..00000000 --- a/src/i18n/locales/es/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cocinero" - } -} diff --git a/src/i18n/locales/fi/leftSidebar/index.js b/src/i18n/locales/fi/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/fi/leftSidebar/index.js +++ b/src/i18n/locales/fi/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/fi/leftSidebar/skills.json b/src/i18n/locales/fi/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/fi/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/fr/leftSidebar/index.js b/src/i18n/locales/fr/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/fr/leftSidebar/index.js +++ b/src/i18n/locales/fr/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/fr/leftSidebar/skills.json b/src/i18n/locales/fr/leftSidebar/skills.json deleted file mode 100644 index 3cb77f08..00000000 --- a/src/i18n/locales/fr/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cuisiner" - } -} diff --git a/src/i18n/locales/he/leftSidebar/index.js b/src/i18n/locales/he/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/he/leftSidebar/index.js +++ b/src/i18n/locales/he/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/he/leftSidebar/skills.json b/src/i18n/locales/he/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/he/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/hi/leftSidebar/index.js b/src/i18n/locales/hi/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/hi/leftSidebar/index.js +++ b/src/i18n/locales/hi/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/hi/leftSidebar/skills.json b/src/i18n/locales/hi/leftSidebar/skills.json deleted file mode 100644 index 4b83a6f4..00000000 --- a/src/i18n/locales/hi/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "गायन" - } -} diff --git a/src/i18n/locales/hu/leftSidebar/index.js b/src/i18n/locales/hu/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/hu/leftSidebar/index.js +++ b/src/i18n/locales/hu/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/hu/leftSidebar/skills.json b/src/i18n/locales/hu/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/hu/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/it/leftSidebar/index.js b/src/i18n/locales/it/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/it/leftSidebar/index.js +++ b/src/i18n/locales/it/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/it/leftSidebar/skills.json b/src/i18n/locales/it/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/it/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/ja/leftSidebar/index.js b/src/i18n/locales/ja/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/ja/leftSidebar/index.js +++ b/src/i18n/locales/ja/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/ja/leftSidebar/skills.json b/src/i18n/locales/ja/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/ja/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/kn/leftSidebar/index.js b/src/i18n/locales/kn/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/kn/leftSidebar/index.js +++ b/src/i18n/locales/kn/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/kn/leftSidebar/skills.json b/src/i18n/locales/kn/leftSidebar/skills.json deleted file mode 100644 index c3b9b1eb..00000000 --- a/src/i18n/locales/kn/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "ಅಡುಗೆ" - } -} diff --git a/src/i18n/locales/ko/leftSidebar/index.js b/src/i18n/locales/ko/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/ko/leftSidebar/index.js +++ b/src/i18n/locales/ko/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/ko/leftSidebar/skills.json b/src/i18n/locales/ko/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/ko/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/ml/leftSidebar/index.js b/src/i18n/locales/ml/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/ml/leftSidebar/index.js +++ b/src/i18n/locales/ml/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/ml/leftSidebar/skills.json b/src/i18n/locales/ml/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/ml/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/mr/leftSidebar/index.js b/src/i18n/locales/mr/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/mr/leftSidebar/index.js +++ b/src/i18n/locales/mr/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/mr/leftSidebar/skills.json b/src/i18n/locales/mr/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/mr/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/nl/leftSidebar/index.js b/src/i18n/locales/nl/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/nl/leftSidebar/index.js +++ b/src/i18n/locales/nl/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/nl/leftSidebar/skills.json b/src/i18n/locales/nl/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/nl/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/no/leftSidebar/index.js b/src/i18n/locales/no/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/no/leftSidebar/index.js +++ b/src/i18n/locales/no/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/no/leftSidebar/skills.json b/src/i18n/locales/no/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/no/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/pa/leftSidebar/index.js b/src/i18n/locales/pa/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/pa/leftSidebar/index.js +++ b/src/i18n/locales/pa/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/pa/leftSidebar/skills.json b/src/i18n/locales/pa/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/pa/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/pl/leftSidebar/index.js b/src/i18n/locales/pl/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/pl/leftSidebar/index.js +++ b/src/i18n/locales/pl/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/pl/leftSidebar/skills.json b/src/i18n/locales/pl/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/pl/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/pt/leftSidebar/index.js b/src/i18n/locales/pt/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/pt/leftSidebar/index.js +++ b/src/i18n/locales/pt/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/pt/leftSidebar/skills.json b/src/i18n/locales/pt/leftSidebar/skills.json deleted file mode 100644 index d03bf6fd..00000000 --- a/src/i18n/locales/pt/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cozinheiro" - } -} diff --git a/src/i18n/locales/ro/leftSidebar/index.js b/src/i18n/locales/ro/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/ro/leftSidebar/index.js +++ b/src/i18n/locales/ro/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/ro/leftSidebar/skills.json b/src/i18n/locales/ro/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/ro/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/ru/leftSidebar/index.js b/src/i18n/locales/ru/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/ru/leftSidebar/index.js +++ b/src/i18n/locales/ru/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/ru/leftSidebar/skills.json b/src/i18n/locales/ru/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/ru/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/sv/leftSidebar/index.js b/src/i18n/locales/sv/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/sv/leftSidebar/index.js +++ b/src/i18n/locales/sv/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/sv/leftSidebar/skills.json b/src/i18n/locales/sv/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/sv/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/ta/leftSidebar/index.js b/src/i18n/locales/ta/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/ta/leftSidebar/index.js +++ b/src/i18n/locales/ta/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/ta/leftSidebar/skills.json b/src/i18n/locales/ta/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/ta/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/tr/leftSidebar/index.js b/src/i18n/locales/tr/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/tr/leftSidebar/index.js +++ b/src/i18n/locales/tr/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/tr/leftSidebar/skills.json b/src/i18n/locales/tr/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/tr/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/uk/leftSidebar/index.js b/src/i18n/locales/uk/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/uk/leftSidebar/index.js +++ b/src/i18n/locales/uk/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/uk/leftSidebar/skills.json b/src/i18n/locales/uk/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/uk/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/vi/leftSidebar/index.js b/src/i18n/locales/vi/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/vi/leftSidebar/index.js +++ b/src/i18n/locales/vi/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/vi/leftSidebar/skills.json b/src/i18n/locales/vi/leftSidebar/skills.json deleted file mode 100644 index 5f178d9b..00000000 --- a/src/i18n/locales/vi/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "Cooking" - } -} diff --git a/src/i18n/locales/zh/leftSidebar/index.js b/src/i18n/locales/zh/leftSidebar/index.js index a13d6a3e..fea53733 100644 --- a/src/i18n/locales/zh/leftSidebar/index.js +++ b/src/i18n/locales/zh/leftSidebar/index.js @@ -4,7 +4,6 @@ import work from './work.json'; import education from './education.json'; import awards from './awards.json'; import certifications from './certifications.json'; -import skills from './skills.json'; import languages from './languages.json'; import references from './references.json'; import extras from './extras.json'; @@ -16,7 +15,6 @@ export default { education, awards, certifications, - skills, languages, references, extras, diff --git a/src/i18n/locales/zh/leftSidebar/skills.json b/src/i18n/locales/zh/leftSidebar/skills.json deleted file mode 100644 index 8b137f80..00000000 --- a/src/i18n/locales/zh/leftSidebar/skills.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "item": { - "placeholder": "烹饪" - } -} diff --git a/src/i18n/source/app/app.json b/src/i18n/source/app/app.json deleted file mode 100644 index 634cecc0..00000000 --- a/src/i18n/source/app/app.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "item": { - "add": "Add {{- heading}}", - "startDate": { - "label": "Start Date" - }, - "endDate": { - "label": "End Date" - }, - "description": { - "label": "Description" - } - }, - "buttons": { - "add": { - "label": "Add" - } - }, - "printDialog": { - "heading": "Download Your Resume", - "quality": { - "label": "Quality" - }, - "printType": { - "label": "Type", - "types": { - "unconstrained": "Unconstrained", - "fitInA4": "Fit in A4", - "multiPageA4": "Multi-Page A4" - } - }, - "helpText": [ - "This export method makes use of HTML canvas to convert the resume to an image and print it on a PDF, which means it will lose all selecting/parsing capabilities.", - "If that is important to you, please try printing the resume instead using Cmd/Ctrl + P or the print button below. The result may vary as the output is browser dependent, but it is known to work best on the latest version of Google Chrome." - ], - "buttons": { - "cancel": "Cancel", - "saveAsPdf": "Save as PDF" - } - }, - "panZoomAnimation": { - "helpText": "You can pan and zoom around the artboard at any time to get a closer look at your resume." - }, - "markdownHelpText": "You can use <1>GitHub Flavored Markdown to style this section of the text." -} diff --git a/src/i18n/source/app/index.js b/src/i18n/source/app/index.js deleted file mode 100644 index d24fe6d1..00000000 --- a/src/i18n/source/app/index.js +++ /dev/null @@ -1,3 +0,0 @@ -import app from './app.json'; - -export default app; diff --git a/src/i18n/source/index.js b/src/i18n/source/index.js deleted file mode 100644 index d96f4262..00000000 --- a/src/i18n/source/index.js +++ /dev/null @@ -1,11 +0,0 @@ -import app from './app'; -import leftSidebar from './leftSidebar'; -import rightSidebar from './rightSidebar'; - -export default { - en: { - app, - leftSidebar, - rightSidebar, - }, -}; diff --git a/src/i18n/source/leftSidebar/awards.json b/src/i18n/source/leftSidebar/awards.json deleted file mode 100644 index 4a52c12a..00000000 --- a/src/i18n/source/leftSidebar/awards.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "title": { - "label": "Title" - }, - "subtitle": { - "label": "Subtitle" - } -} diff --git a/src/i18n/source/leftSidebar/certifications.json b/src/i18n/source/leftSidebar/certifications.json deleted file mode 100644 index e6e0effa..00000000 --- a/src/i18n/source/leftSidebar/certifications.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "title": { - "label": "Name" - }, - "subtitle": { - "label": "Authority" - } -} diff --git a/src/i18n/source/leftSidebar/education.json b/src/i18n/source/leftSidebar/education.json deleted file mode 100644 index 346748c7..00000000 --- a/src/i18n/source/leftSidebar/education.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "name": { - "label": "Name" - }, - "major": { - "label": "Major" - }, - "grade": { - "label": "Grade" - } -} diff --git a/src/i18n/source/leftSidebar/extras.json b/src/i18n/source/leftSidebar/extras.json deleted file mode 100644 index 59950d61..00000000 --- a/src/i18n/source/leftSidebar/extras.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "key": { - "label": "Key" - }, - "value": { - "label": "Value" - } -} diff --git a/src/i18n/source/leftSidebar/index.js b/src/i18n/source/leftSidebar/index.js deleted file mode 100644 index fea53733..00000000 --- a/src/i18n/source/leftSidebar/index.js +++ /dev/null @@ -1,21 +0,0 @@ -import profile from './profile.json'; -import objective from './objective.json'; -import work from './work.json'; -import education from './education.json'; -import awards from './awards.json'; -import certifications from './certifications.json'; -import languages from './languages.json'; -import references from './references.json'; -import extras from './extras.json'; - -export default { - profile, - objective, - work, - education, - awards, - certifications, - languages, - references, - extras, -}; diff --git a/src/i18n/source/leftSidebar/languages.json b/src/i18n/source/leftSidebar/languages.json deleted file mode 100644 index 21cb2483..00000000 --- a/src/i18n/source/leftSidebar/languages.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "key": { - "label": "Name" - }, - "level": { - "label": "Level" - }, - "rating": { - "label": "Rating" - } -} diff --git a/src/i18n/source/leftSidebar/objective.json b/src/i18n/source/leftSidebar/objective.json deleted file mode 100644 index 32980479..00000000 --- a/src/i18n/source/leftSidebar/objective.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "objective": { - "label": "Objective" - } -} diff --git a/src/i18n/source/leftSidebar/profile.json b/src/i18n/source/leftSidebar/profile.json deleted file mode 100644 index 6f109ed6..00000000 --- a/src/i18n/source/leftSidebar/profile.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "photoUrl": { - "label": "Photo URL" - }, - "firstName": { - "label": "First Name" - }, - "lastName": { - "label": "Last Name" - }, - "subtitle": { - "label": "Subtitle" - }, - "address": { - "label": "Address", - "line1": { - "label": "Address Line 1" - }, - "line2": { - "label": "Address Line 2" - }, - "line3": { - "label": "Address Line 3" - } - }, - "phone": { - "label": "Phone Number" - }, - "website": { - "label": "Website" - }, - "email": { - "label": "Email Address" - } -} diff --git a/src/i18n/source/leftSidebar/references.json b/src/i18n/source/leftSidebar/references.json deleted file mode 100644 index f7f2bf83..00000000 --- a/src/i18n/source/leftSidebar/references.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "name": { - "label": "Name" - }, - "position": { - "label": "Position" - }, - "phone": { - "label": "Phone Number" - }, - "email": { - "label": "Email Address" - } -} diff --git a/src/i18n/source/leftSidebar/work.json b/src/i18n/source/leftSidebar/work.json deleted file mode 100644 index 9859754c..00000000 --- a/src/i18n/source/leftSidebar/work.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "name": { - "label": "Name" - }, - "role": { - "label": "Role" - } -} diff --git a/src/i18n/source/rightSidebar/about.json b/src/i18n/source/rightSidebar/about.json deleted file mode 100644 index c5538e17..00000000 --- a/src/i18n/source/rightSidebar/about.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "title": "About", - "documentation": { - "heading": "Documentation", - "body": "Want to know more about the app? Need information on how to contribute to the project? Look no further, there's a comprehensive guide made just for you.", - "buttons": { - "documentation": "Documentation" - } - }, - "bugOrFeatureRequest": { - "heading": "Bug? Feature Request?", - "body": "Something halting your progress from making a resume? Found a pesky bug that just won't quit? Talk about it on the GitHub Issues section, or send me and email using the actions below.", - "buttons": { - "raiseIssue": "Raise an Issue", - "sendEmail": "Send an Email" - } - }, - "sourceCode": { - "heading": "Source Code", - "body": "Want to run the project from its source? Are you a developer willing to contribute to the open-source development of this project? Click the button below.", - "buttons": { - "githubRepo": "GitHub Repo" - } - }, - "license": { - "heading": "License Information", - "body": "The project is governed under the MIT License, which you can read more about below. Basically, you are allowed to use the project anywhere provided you give credits to the original author.", - "buttons": { - "mitLicense": "MIT License" - } - }, - "footer": { - "credit": "Made with Love by <1>Amruth Pillai", - "thanks": "Thank you for using Reactive Resume!" - } -} diff --git a/src/i18n/source/rightSidebar/actions.json b/src/i18n/source/rightSidebar/actions.json deleted file mode 100644 index ae75bbd1..00000000 --- a/src/i18n/source/rightSidebar/actions.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "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" - } - }, - "downloadResume": { - "heading": "Download Your Resume", - "body": "You can click on the button below to download a PDF version of your resume instantly. For best results, please use the latest version of Google Chrome.", - "buttons": { - "saveAsPdf": "Save as PDF" - } - }, - "loadDemoData": { - "heading": "Load Demo Data", - "body": "Unclear on what to do with a fresh blank page? Load some demo data with prepopulated values to see how a resume should look and you can start editing from there.", - "buttons": { - "loadData": "Load 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/source/rightSidebar/colors.json b/src/i18n/source/rightSidebar/colors.json deleted file mode 100644 index f7fff7ba..00000000 --- a/src/i18n/source/rightSidebar/colors.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "title": "Colors", - "colorOptions": "Color Options", - "primaryColor": "Primary Color", - "accentColor": "Secondary Color", - "clipboardCopyAction": "{{color}} has been copied to the clipboard." -} diff --git a/src/i18n/source/rightSidebar/fonts.json b/src/i18n/source/rightSidebar/fonts.json deleted file mode 100644 index dbcfe5f2..00000000 --- a/src/i18n/source/rightSidebar/fonts.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "title": "Fonts", - "fontFamily": { - "label": "Font Family", - "helpText": "You can use any font that is installed on your system as well. Just enter the name of the font family here and the browser would load it up for you." - } -} diff --git a/src/i18n/source/rightSidebar/index.js b/src/i18n/source/rightSidebar/index.js deleted file mode 100644 index 2560696c..00000000 --- a/src/i18n/source/rightSidebar/index.js +++ /dev/null @@ -1,15 +0,0 @@ -import templates from './templates.json'; -import colors from './colors.json'; -import fonts from './fonts.json'; -import actions from './actions.json'; -import settings from './settings.json'; -import about from './about.json'; - -export default { - templates, - colors, - fonts, - actions, - settings, - about, -}; diff --git a/src/i18n/source/rightSidebar/settings.json b/src/i18n/source/rightSidebar/settings.json deleted file mode 100644 index dacc183c..00000000 --- a/src/i18n/source/rightSidebar/settings.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "title": "Settings", - "language": { - "label": "Language", - "helpText": "If you would like to help translate the app into your own language, please refer to the <1>Translation Documentation." - } -} \ No newline at end of file diff --git a/src/i18n/source/rightSidebar/templates.json b/src/i18n/source/rightSidebar/templates.json deleted file mode 100644 index 89fd528d..00000000 --- a/src/i18n/source/rightSidebar/templates.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "title": "Templates" -}