|
3 | 3 | <form class="box register-form is-narrow-modal-form">
|
4 | 4 | {{#if wasSentSuccessfully}}
|
5 | 5 | <header>
|
6 |
| - <h3 class="title is-3 page-header">{{#i18n 'feedback-submitted'}}Feedback submitted{{/i18n}}</h3> |
| 6 | + <h3 class="title is-3 page-header"> |
| 7 | + {{#i18n 'feedback.success-heading' |
| 8 | + }}Feedback submitted{{/i18n}} |
| 9 | + </h3> |
7 | 10 | </header>
|
8 | 11 | <div class="field">
|
9 |
| - <p>{{#i18n 'thanks-feedback'}}Thank you very much for your feedback, it is highly appreciated!{{/i18n}}</p> |
| 12 | + <p>{{#i18n 'feedback.thanks'}}Thank you very much for your feedback, it is highly appreciated!{{/i18n}}</p> |
10 | 13 | </div>
|
11 | 14 | <div class="field is-grouped">
|
12 | 15 | <div class="control">
|
13 |
| - <button class="button btn-close" type=button>{{#i18n 'close'}}Close{{/i18n}}</button> |
| 16 | + <button class="button btn-close" type=button>{{#i18n 'button.close'}}Close{{/i18n}}</button> |
14 | 17 | </div>
|
15 | 18 | </div>
|
16 | 19 | {{else}}
|
17 | 20 | <header>
|
18 |
| - <h3 class="title is-3 page-header">{{#i18n 'feedback'}}Feedback{{/i18n}}</h3> |
| 21 | + <h3 class="title is-3 page-header">{{#i18n 'feedback.form-heading'}}Feedback{{/i18n}}</h3> |
19 | 22 | </header>
|
20 | 23 | <div class="field">
|
21 |
| - <label class="label">{{#i18n 'subject'}}Subject{{/i18n}}</label> |
| 24 | + <label class="label">{{#i18n 'label.subject'}}Subject{{/i18n}}</label> |
22 | 25 | <div class="control">
|
23 | 26 | <input
|
24 | 27 | name="subject"
|
25 | 28 | class="input"
|
26 | 29 | type="text"
|
27 | 30 | name="title"
|
28 |
| - placeholder="{{#i18n 'about-readit'}}About READ-IT{{/i18n}}" |
| 31 | + placeholder="{{#i18n 'placeholder.feedback-subject'}}About READ-IT{{/i18n}}" |
29 | 32 | >
|
30 | 33 | </div>
|
31 | 34 | </div>
|
32 | 35 |
|
33 | 36 | <div class="field">
|
34 | 37 | <div class="control">
|
35 |
| - <label class="label">{{#i18n 'feedback'}}Feedback{{/i18n}}</label> |
| 38 | + <label class="label">{{#i18n 'label.feedback'}}Feedback{{/i18n}}</label> |
36 | 39 | <textarea
|
37 | 40 | name="feedback"
|
38 | 41 | class="textarea"
|
39 |
| - placeholder="{{#i18n 'feedback-placeholder'}}e.g. I love READ-IT!{{/i18n}}" |
| 42 | + placeholder="{{#i18n 'placeholder.feedback-content'}}e.g. I love READ-IT!{{/i18n}}" |
40 | 43 | ></textarea>
|
41 | 44 | </div>
|
42 | 45 | </div>
|
43 | 46 |
|
44 | 47 | {{#if hasError}}
|
45 | 48 | <div class="field form-feedback-bar has-background-danger has-text-white">
|
46 |
| - <p class="help">{{#i18n 'feedback-failed'}}Feedback submission failed. Please try again and if this error keeps occuring, contact the |
| 49 | + <p class="help">{{#i18n 'feedback.failed'}}Feedback submission failed. Please try again and if this error keeps occuring, contact the |
47 | 50 | site administrator.{{/i18n}}</p>
|
48 | 51 | </div>
|
49 | 52 | {{/if}}
|
50 | 53 |
|
51 | 54 | <div class="field is-grouped">
|
52 | 55 | <div class="control">
|
53 |
| - <button class="button is-link btn-submit" type=submit>{{#i18n 'submit'}}Submit{{/i18n}}</button> |
| 56 | + <button class="button is-link btn-submit" type=submit>{{#i18n 'button.submit'}}Submit{{/i18n}}</button> |
54 | 57 | </div>
|
55 | 58 |
|
56 | 59 | <div class="control">
|
57 |
| - <button class="button btn-close" type=button>{{#i18n 'close'}}Close{{/i18n}}</button> |
| 60 | + <button class="button btn-close" type=button>{{#i18n 'button.close'}}Close{{/i18n}}</button> |
58 | 61 | </div>
|
59 | 62 | </div>
|
60 | 63 | {{/if}}
|
|
65 | 68 | <button
|
66 | 69 | type=button
|
67 | 70 | class="modal-close is-large"
|
68 |
| - aria-label="{{#i18n 'close'}}Close{{/i18n}}" |
| 71 | + aria-label="{{#i18n 'button.close'}}Close{{/i18n}}" |
69 | 72 | ></button>
|
0 commit comments