Skip to content

Instantly share code, notes, and snippets.

@KennedyIhe
Created April 27, 2020 22:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KennedyIhe/34549c807d305b34f6eff11afb24c53d to your computer and use it in GitHub Desktop.
Save KennedyIhe/34549c807d305b34f6eff11afb24c53d to your computer and use it in GitHub Desktop.
var config = {}
config.endpoint = 'Your CosmosDB Endpoint';
config.key = 'Your CosmosDB Key';
config.database = { id: 'TranslationsDb' };
config.container = {id: 'Languages'}
config.items = {
en:{
"id": "english",
"code": "en",
"es": "Spanish",
"en": "English",
"menus": {
"home": "Home",
"translate": "Translate"
},
"pageHomeTitle": "Welcome to KennedyIhe",
"pageHomeDesc": "A place to help prepare you for joining KennedyIhe",
"pageHomeStartBtn": "LET'S GET STARTED",
"pageHomeContentText": "Welcome at our place.",
},
es:{
"id": "spanish",
"code": "es",
"es": "Español",
"en": "Inglés",
"menus": {
"home": "Casa",
"translate": "Traducir"
},
"pageHomeTitle": "Bienvenido a la KennedyIhe",
"pageHomeDesc": "Un lugar para ayudarlo a prepararse para unirse a KennedyIhe",
"pageHomeStartBtn": "EMPECEMOS",
"pageHomeContentText": "Un lugar para ayudarlo.",
}
}
module.exports = config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment