Skip to content

Instantly share code, notes, and snippets.

@vaibhavgehani
Created July 12, 2021 12:38
Show Gist options
  • Select an option

  • Save vaibhavgehani/0f4199a6aadf5b4c8c450e78fbcafeeb to your computer and use it in GitHub Desktop.

Select an option

Save vaibhavgehani/0f4199a6aadf5b4c8c450e78fbcafeeb to your computer and use it in GitHub Desktop.
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