Translated to english and added pwd as url base
This commit is contained in:
@@ -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 });
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
@@ -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 });
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
@@ -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 });
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
@@ -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 });
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user