HFJ-1: Changed default score string. Also make score string editable and translatable

pull/1/head
Frank Ronny Larsen 2013-11-08 10:25:49 +01:00
parent cc02101416
commit 9cc9250451
5 changed files with 20 additions and 2 deletions

View File

@ -102,7 +102,7 @@ H5P.QuestionSet = function (options, contentId) {
successComment: 'You have enough correct answers to pass the test.',
failGreeting: 'Sorry!',
failComment: "You don't have enough correct answers to pass this test.",
scoreString: 'You got @score of @total questions correct.',
scoreString: 'You got @score points of @total possible.',
finishButtonText: 'Finish',
solutionButtonText: 'Show solution',
showAnimations: false,

View File

@ -86,6 +86,11 @@
"default": "Ditt resultat:",
"description": "Denne overskriften vises over tilbakemeldingene på slutten av spørsmålssettet."
},
{
"label": "Poengvisningstekst",
"default": "Du fikk @score poeng av @total mulige.",
"description": "Tekst som viser brukerens oppnådde poeng. \"@score\" blir erstattet med utregnet resultat, \"@total\" blir erstattet med høyest mulige resultat."
},
{
"label": "Tittel ved bestått",
"default": "Gratulerer!",

View File

@ -86,6 +86,11 @@
"default": "Ditt resultat:",
"description": "Denne overskriften vises over tilbakemeldingane på slutten av spørsmålssettet."
},
{
"label": "Poengvisningstekst",
"default": "Du fikk @score poeng av @total mulige.",
"description": "Tekst som viser brukerens oppnådde poeng. \"@score\" blir erstatta med utregna resultat, \"@total\" blir erstatta med høgest mulig resultat."
},
{
"label": "Tittel ved bestått",
"default": "Gratulerer!",

View File

@ -3,7 +3,7 @@
"contentType": "question",
"majorVersion": 1,
"minorVersion": 0,
"patchVersion": 32,
"patchVersion": 33,
"runnable": 1,
"fullscreen": 0,
"machineName": "H5P.QuestionSet",

View File

@ -160,6 +160,14 @@
"em"
]
},
{
"name": "scoreString",
"type": "text",
"label": "Score display text",
"description": "Text used to display total user score. \"@score\" will be replaced by calculated score, \"@total\" will be replaced by maximum possible score. ",
"default": "You got @score points of @total possible.",
"optional": true
},
{
"name": "successGreeting",
"type": "text",