Created
July 12, 2021 12:38
-
-
Save vaibhavgehani/0f4199a6aadf5b4c8c450e78fbcafeeb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export const globalizationList = { | |
| en: { | |
| title: 'Hello sir', | |
| TITLE_2: 'Hello {value}', | |
| description: 'Ooohh .... did you just translate this text ?', | |
| data: { | |
| name: 'My name is {name_value}' | |
| } | |
| }, | |
| es: { | |
| title: 'Hola señor', | |
| TITLE_2: 'Hola {value}', | |
| description: 'Ooohh .... acabas de traducir este texto?', | |
| data: { | |
| name: 'Me llamo {name_value}' | |
| } | |
| }, | |
| fr: { | |
| title: "Bonjour Monsieur", | |
| TITLE_2: "Bonjour {value}", | |
| description : "Ooohh .... vous venez de traduire ce texte?", | |
| data: { | |
| name: "je m'appelle {name_value}" | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment