cra-template-truemark
Version:
CRA Template with setups including, eslint, prettier, eslint, husky and reviewdog
29 lines (26 loc) • 1.17 kB
JavaScript
/**
*
* NOTE: Please maintain by alphabetical order; it will be easier to search and look through the file.
* Add the values according to following labels
*
* 1. attributes - This will include site wide attributes values eg: (Email, Name, Password, etc);
* 2. auth - This will include all the labels for the auth with nested objects;
* - Include all the translations inside respective object (eg: login, signUp, passwordReset, etc);
* 3. common - This will include common translation in app eg: (Job, Candidate, Games, etc);
* 4. label - This will include all the labels for the buttons eg: (Login, Sign Up, etc);
* 5. message - This will include common messages that needs to be displayed in app eg: (Email verified, etc);
* 6. modal - This will include all the labels, description, subheadings for the modal eg: (SignUp modal, Launch setup modal, etc);
*
* Translation can be done from english to spanish from: https://translate.google.com/?sl=en&tl=es
**/
const translation = {
label: {
dashboard: "Dashboard",
tutorial: "Tutorial",
scoreboard: "Scoreboard",
assessment: "Assessment",
},
};
export default {
translation,
};