Last active
January 28, 2019 15:22
-
-
Save Moinax/2010d8bf992c46f36c0f44f7a30838a0 to your computer and use it in GitHub Desktop.
Provide config for application TMLW
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "status": "error", | |
| "lives": 3, | |
| "message": "" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "gameId": 123456, | |
| "typedValue": "david guetta" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "gameId": 123456, | |
| "kilo": 2, | |
| "grams": 5 | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "status": "success", | |
| "lives": 3, | |
| "answer": { | |
| "name": "David Guetta", | |
| "picture": | |
| "https://upload.wikimedia.org/wikipedia/commons/thumb/3/33/David_Guetta_2013-04-12_001.jpg/1200px-David_Guetta_2013-04-12_001.jpg", | |
| "slogan": | |
| "Son slogan F*** Me I'm Famous a été collé sur les plus grands billboards d'Ibiza, juste en sortant de l'aéroport. C'est un homme pas particulièrement sexy mais tout le monde connait son visage.", | |
| "sound": "" | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| window.config = { | |
| lives: 3, | |
| total: 15, | |
| gameId: 123456, | |
| url: { | |
| visual: 'visual_url', | |
| video: 'video_url', | |
| finder: 'finder_url', | |
| subsidiary: 'subsidiary_url' | |
| } | |
| translations: { | |
| page: { | |
| start: { | |
| title: "The Cottage of Tomorrow", | |
| text1: | |
| "Parmi les références présentes dans le chalet, retrouve <strong>15 noms de DJ</strong> ayant participé à l’un des festivals Tomorrowland.", | |
| text2: | |
| "Quand tu penses avoir trouvé une référence à un DJ, tape simplement son nom.", | |
| text3: | |
| "<strong>à gagner : 7 jours de folie pour 4 personnes à l’Alpe d'Huez du 9 au 16 mars 2019 avec un accès de 3 jours au festival Tomorrowland Winter ! Avion, hôtel, ski & lift pass compris.</strong>", | |
| text4: | |
| "Attention, <strong>après 3 erreurs</strong>, la partie est finie.", | |
| text5: | |
| "Mais la route ne s’arrête pas pour autant, tu pourras retenter ta chance...", | |
| button: "Chercher les références" | |
| }, | |
| finder: { | |
| question: { | |
| title: "Tape le nom du DJ dont tu as trouvé la référence", | |
| close: "Fermer", | |
| validation: { | |
| "repeated": "Vous avez déjà trouvé cette référence", | |
| "exceeding": "Vous avez déjà consommez toutes vos vies" | |
| } | |
| }, | |
| error: { | |
| title: "Mauvaise réponse", | |
| text1: | |
| "Chaque mauvaise réponse te fais perdre un Lotus. <br /> Au bout de <strong>3 erreurs</strong> la partie s’arrête.", | |
| button: "Continue" | |
| } | |
| }, | |
| references: { | |
| title: "Références trouvées", | |
| anonymous: "Non trouvé", | |
| close: "Fermer" | |
| }, | |
| subsidiary: { | |
| title: | |
| "En combien de temps en moyenne les participants trouveront 15 références ?", | |
| kilo: "kilo(s)", | |
| grams: "gram(s)", | |
| button: "Valider ma participation" | |
| }, | |
| thanks: { | |
| success: { | |
| title: "Merci pour ta participation", | |
| text1: | |
| "Nous te tiendrons personnellement informé si tu fais partie des gagnants.", | |
| text2: | |
| "N’hésite pas à revenir demain pour multiplier tes chances de gagner.", | |
| text3: | |
| "Tu as trouvé cette action incroyable ? <strong>Partage là à tes amis.</strong>" | |
| }, | |
| fail: { | |
| title: "La partie est finie", | |
| text1: "", | |
| text2: | |
| "N’hésite pas à revenir demain pour multiplier tes chances de gagner.", | |
| text3: | |
| "Tu as trouvé cette action incroyable ? <strong>Partage là à tes amis.</strong>" | |
| } | |
| } | |
| }, | |
| components: { | |
| counter: { | |
| text1: "références trouvées" | |
| }, | |
| lives: { | |
| title: "Chances restantes" | |
| }, | |
| references: { | |
| button: "Références" | |
| } | |
| } | |
| } | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment