From d972c99373ac2c76b935fcc2a9b76115091d8dcc Mon Sep 17 00:00:00 2001 From: Luc Didry Date: Thu, 4 Aug 2016 13:10:29 +0200 Subject: [PATCH] =?UTF-8?q?Traductions=20oubli=C3=A9es?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/server.js b/server.js index 39d7a6f..f5ad98a 100644 --- a/server.js +++ b/server.js @@ -472,20 +472,20 @@ function cleanAndInitializeDemoRoom() { // DUMMY DATA db.clearRoom('/demo', function() { - db.createColumn( '/demo', 'Not Started' ); - db.createColumn( '/demo', 'Started' ); - db.createColumn( '/demo', 'Testing' ); - db.createColumn( '/demo', 'Review' ); - db.createColumn( '/demo', 'Complete' ); + db.createColumn( '/demo', 'Pas commencé' ); + db.createColumn( '/demo', 'Commencé' ); + db.createColumn( '/demo', 'En test' ); + db.createColumn( '/demo', 'Validation' ); + db.createColumn( '/demo', 'Terminé' ); - createCard('/demo', 'card1', 'Hello this is fun', roundRand(600), roundRand(300), Math.random() * 10 - 5, 'yellow'); - createCard('/demo', 'card2', 'Hello this is a new story.', roundRand(600), roundRand(300), Math.random() * 10 - 5, 'white'); + createCard('/demo', 'card1', 'Salut, c\'est fun', roundRand(600), roundRand(300), Math.random() * 10 - 5, 'yellow'); + createCard('/demo', 'card2', 'Salut, c\'est une nouvelle histoire.', roundRand(600), roundRand(300), Math.random() * 10 - 5, 'white'); createCard('/demo', 'card3', '.', roundRand(600), roundRand(300), Math.random() * 10 - 5, 'blue'); createCard('/demo', 'card4', '.', roundRand(600), roundRand(300), Math.random() * 10 - 5, 'green'); - createCard('/demo', 'card5', 'Hello this is fun', roundRand(600), roundRand(300), Math.random() * 10 - 5, 'yellow'); - createCard('/demo', 'card6', 'Hello this is a new card.', roundRand(600), roundRand(300), Math.random() * 10 - 5, 'yellow'); + createCard('/demo', 'card5', 'Salut, c\'est fun', roundRand(600), roundRand(300), Math.random() * 10 - 5, 'yellow'); + createCard('/demo', 'card6', 'Salut, c\'est un nouveau mémo.', roundRand(600), roundRand(300), Math.random() * 10 - 5, 'yellow'); createCard('/demo', 'card7', '.', roundRand(600), roundRand(300), Math.random() * 10 - 5, 'blue'); createCard('/demo', 'card8', '.', roundRand(600), roundRand(300), Math.random() * 10 - 5, 'green'); });