We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e75c83f commit bd570f7Copy full SHA for bd570f7
src/components/FlowForm.vue
@@ -46,6 +46,7 @@
46
v-if="!submitted"
47
v-html="language.formatString(language.pressEnter)">
48
</a>
49
+ <p class="text-success" v-if="submitted">{{ language.successText }}</p>
50
</slot>
51
</div>
52
src/models/LanguageModel.js
@@ -24,6 +24,7 @@ export default class LanguageModel {
24
this.percentCompleted = ':percent% completed'
25
this.invalidPrompt = 'Please fill out the field correctly'
26
this.thankYouText = 'Thank you!'
27
+ this.successText = 'Your submission has been sent.'
28
this.ariaOk = 'Press to continue'
29
this.ariaRequired = 'This step is required'
30
this.ariaPrev = 'Previous step'
0 commit comments