-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of git://github.com/kiran-p/Quiz-on-AngularJS
resolved conflicts: app/index.html app/js/views/templates/helpView.html app/js/views/templates/quizView.html
- Loading branch information
Showing
7 changed files
with
43 additions
and
28 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
{ | ||
"locale-id": "de", | ||
"appTitle": "Quiz Anwendung", | ||
"home-title": "Quiz", | ||
"home-text": "geben Sie Ihren Namen", | ||
"Quiz": "Quiz", | ||
"enter-your-name": "Geben Sie Ihren Namen", | ||
"start-quiz": "Quiz starten", | ||
"help": "helfen", | ||
"results":"Ergebnisse", | ||
"congrats":"Herzlichen Glückwunsch!", | ||
"score-msg":"Ihr Ergebnis ist ", | ||
"play-again":"spiele wieder", | ||
"new-game":"neues Spiel" | ||
"new-game":"neues Spiel", | ||
"next":"neben", | ||
"pass":"gehen", | ||
"question":"Frage", | ||
"weight":"Gewicht", | ||
"quit":"verlassen", | ||
"back":"zurück" | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
{ | ||
"locale-id": "en", | ||
"appTitle": "Quiz Application", | ||
"home-title": "Quiz", | ||
"home-text": "Enter your name", | ||
"Quiz": "Quiz", | ||
"enter-your-name": "Enter your name", | ||
"start-quiz": "Start Quiz", | ||
"help": "Help", | ||
"results":"Results", | ||
"congrats":"Congratulations!", | ||
"score-msg":"Your score is", | ||
"play-again":"Play Again", | ||
"new-game":"New Game" | ||
"new-game":"New Game", | ||
"next":"Next", | ||
"pass":"Pass", | ||
"question":"Question", | ||
"weight":"Weight", | ||
"quit":"Quit" , | ||
"back":"Back" | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
<section class='help-view' data-ng-controller="HelpCtrl"> | ||
<ul> | ||
<li>The score obtained at the end of the Quiz is sum of weights of the questions answered correctly</li> | ||
<li>All the questions do not have the same weight</li> | ||
<li>If you do not answer the question in the time limit the question is passed</li> | ||
<li>There are {{quiz.questionnaire.length}} questions</li> | ||
<li>Each question has time limit of {{quiz.duration}} seconds </li> | ||
</ul> | ||
<button data-ng-click="back()">Back</button> | ||
<section class='help-view' data-ng-controller="QuizCtrl"> | ||
<div> | ||
<p>The score obtained at the end of the Quiz is the sum of weights of the questions answered correctly.</p> | ||
<p>There are {{quiz.questionnaire.length}} questions</p> | ||
<p>All the questions do not have the same weight.</p> | ||
<p>Each question has time limit of {{quiz.duration}} seconds </p> | ||
<p>If you do not answer the question in the time limit the question is passed</p> | ||
<button data-ng-click="back()">{{locale['back']}}</button> | ||
</div> | ||
</section> |
This file contains 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
This file contains 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