This file contains 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
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