Traductions oubliées
This commit is contained in:
parent
9a2cffece6
commit
d972c99373
1 changed files with 9 additions and 9 deletions
18
server.js
18
server.js
|
@ -472,20 +472,20 @@ function cleanAndInitializeDemoRoom()
|
||||||
{
|
{
|
||||||
// DUMMY DATA
|
// DUMMY DATA
|
||||||
db.clearRoom('/demo', function() {
|
db.clearRoom('/demo', function() {
|
||||||
db.createColumn( '/demo', 'Not Started' );
|
db.createColumn( '/demo', 'Pas commencé' );
|
||||||
db.createColumn( '/demo', 'Started' );
|
db.createColumn( '/demo', 'Commencé' );
|
||||||
db.createColumn( '/demo', 'Testing' );
|
db.createColumn( '/demo', 'En test' );
|
||||||
db.createColumn( '/demo', 'Review' );
|
db.createColumn( '/demo', 'Validation' );
|
||||||
db.createColumn( '/demo', 'Complete' );
|
db.createColumn( '/demo', 'Terminé' );
|
||||||
|
|
||||||
|
|
||||||
createCard('/demo', 'card1', 'Hello this is fun', roundRand(600), roundRand(300), Math.random() * 10 - 5, 'yellow');
|
createCard('/demo', 'card1', 'Salut, c\'est 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', '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', 'card3', '.', roundRand(600), roundRand(300), Math.random() * 10 - 5, 'blue');
|
||||||
createCard('/demo', 'card4', '.', roundRand(600), roundRand(300), Math.random() * 10 - 5, 'green');
|
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', 'card5', 'Salut, c\'est 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', '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', 'card7', '.', roundRand(600), roundRand(300), Math.random() * 10 - 5, 'blue');
|
||||||
createCard('/demo', 'card8', '.', roundRand(600), roundRand(300), Math.random() * 10 - 5, 'green');
|
createCard('/demo', 'card8', '.', roundRand(600), roundRand(300), Math.random() * 10 - 5, 'green');
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue