diff --git a/js/create/view/CreateScreenView.ts b/js/create/view/CreateScreenView.ts index 80d58dd4..8518c532 100644 --- a/js/create/view/CreateScreenView.ts +++ b/js/create/view/CreateScreenView.ts @@ -164,6 +164,15 @@ class CreateScreenView extends RAPScreenView { super.reset(); } + /** + * To support voicing. + * @override + * @public + */ + public getVoicingOverviewContent(): string { + return ratioAndProportionStrings.a11y.create.overviewSentence; + } + /** * To support voicing. * @override diff --git a/js/discover/view/DiscoverScreenView.ts b/js/discover/view/DiscoverScreenView.ts index fd5f203f..25bb0324 100644 --- a/js/discover/view/DiscoverScreenView.ts +++ b/js/discover/view/DiscoverScreenView.ts @@ -73,6 +73,15 @@ class DiscoverScreenView extends RAPScreenView { super.layout( bounds ); } + /** + * To support voicing. + * @override + * @public + */ + public getVoicingOverviewContent(): string { + return ratioAndProportionStrings.a11y.discover.overviewSentence; + } + /** * To support voicing. * @override diff --git a/js/ratioAndProportionStrings.ts b/js/ratioAndProportionStrings.ts index c0728bb7..ea44f372 100644 --- a/js/ratioAndProportionStrings.ts +++ b/js/ratioAndProportionStrings.ts @@ -139,6 +139,7 @@ type StringsType = { 'paragraph3': string, 'interactionHint': string }, + 'overviewSentence': string, 'challengesHelpText': string, 'challenge1Lowercase': string, 'challenge2Lowercase': string, @@ -152,6 +153,7 @@ type StringsType = { 'paragraph2': string, 'interactionHint': string }, + 'overviewSentence': string, 'challenge': string, 'tickMarkRangeHelpText': string, 'tickMarkRangeContextResponse': string, diff --git a/ratio-and-proportion-strings_en.json b/ratio-and-proportion-strings_en.json index 12a53fd2..58a1a891 100644 --- a/ratio-and-proportion-strings_en.json +++ b/ratio-and-proportion-strings_en.json @@ -352,6 +352,9 @@ "value": "Move hands up and down to explore and discover different challenges." } }, + "overviewSentence": { + "value": "The Discover Screen changes as you play with it.\nA tall space contains two interactive hands, a Left Hand and a Right Hand. You can move the Left Hand and the Right Hand up and down individually, or activate Both Hands to move both hands at the same time. As you move the hands up and down, you will get closer to or farther from the challenge ratio, and closer or farther from a dark green screen.\nTick mark options allow you to explore the vertical space with evenly-spaced horizontal lines. \nThere are different challenges to explore, and a button to reset the sim." + }, "challengesHelpText": { "value": "Choose a challenge, then move hands to explore it." }, @@ -383,6 +386,9 @@ "value": "Explore current challenge, or look for My Challenge to create your own." } }, + "overviewSentence": { + "value": "The Create Screen changes as you play with it.\nHere, you can create your own Challenge Ratio. A tall space contains two interactive hands, a Left Hand and a Right Hand. You can move the Left Hand and the Right Hand up and down individually, or activate Both Hands to move both hands at the same time. As you move the hands up and down, you will get closer to or farther from the Challenge Ratio, unless you lock the ratio when screen is darkest green.\nTick mark options allow you to explore the vertical space with evenly-spaced horizontal lines, and you can increase the tick mark range to explore larger numbers. \nFinally, there is a button to reset the sim." + }, "challenge": { "value": "challenge" },