Example #1
0
app.get('/dict/:language', function (req, res) {
  res.json({
    hash: i18n.getHashes()[req.params.language],
    dict: i18n.getTranslations(req.params.language)
  });
});
Example #2
0
app.get('/hash/:language', function (req, res) {
  res.json({"hash": i18n.getHashes()[req.params.language]});
});