Translated to english and added pwd as url base

This commit is contained in:
Nick Leffler
2017-09-27 08:11:26 -04:00
parent b2f849e738
commit 94b5e30969
12 changed files with 131 additions and 149 deletions

View File

@@ -49,7 +49,7 @@ router.get('/:id', function(req, res, next) {
},
//aprés toute les opération de la base
function() {
res.render('channel', { title: 'Liste des vidéos',videos: data, channel: channel_info });
res.render('channel', { title: 'List of videos',videos: data, channel: channel_info });
});
});

View File

@@ -24,7 +24,7 @@ router.get('/', function(req, res, next) {
},
//aprés toute les opération de la base
function() {
res.render('index', { title: 'Liste des channel',channels: data, presentation: config.presentation });
res.render('index', { title: 'List of videos',channels: data, presentation: config.presentation });
});
});

View File

@@ -41,7 +41,7 @@ router.get('/:id', function(req, res, next) {
row.file.push(ligne);
},function(){
res.render('movie', { title: 'Détail vidéo',movie: row });
res.render('movie', { title: 'Video Detail',movie: row });
});
});

View File

@@ -20,7 +20,7 @@ router.get('/:id', function(req, res, next) {
//aprés toute les opération de la base
function(){
console.log(shows);
res.render('show_list', { title: 'Liste des séries',shows: shows, channel_id: req.params.id });
res.render('show_list', { title: 'List of series',shows: shows, channel_id: req.params.id });
});
});