| @@ -1,13 +1,13 @@ | ||
| 1 | 1 | <div class="lp-box-data-content"> |
| 2 | 2 | <div class="learn-press-question"> |
| 3 | 3 | <div class="content-editable" contenteditable="true" @mouseup="canInsertBlank" @mousedown="activeBlank" @keyup="updateAnswer"></div> |
| 4 | 4 | <div class="description"> |
| 5 | - <p><?php _e( 'Select a word in passage above and click <strong>\'Insert new blank\'</strong> to make that word is a blank for filling.', 'learnpress' ); ?></p> | |
| 5 | + <p><?php _e( 'Select a word in the passage above and click <strong>\'Insert a new blank\'</strong> to make that word a blank for filling.', 'learnpress' ); ?></p> | |
| 6 | 6 | </div> |
| 7 | 7 | <p> |
| 8 | - <button class="button" type="button" @click="insertBlank" :disabled="!canInsertNewBlank"><?php esc_html_e( 'Insert new blank', 'learnpress' ); ?></button> | |
| 9 | - <button class="button" type="button" @click="clearBlanks" :disabled="blanks.length == 0"><?php esc_html_e( 'Clear all blanks', 'learnpress' ); ?></button> | |
| 8 | + <button class="button" type="button" @click="insertBlank" :disabled="!canInsertNewBlank"><?php esc_html_e( 'Insert a new blank', 'learnpress' ); ?></button> | |
| 9 | + <button class="button" type="button" @click="clearBlanks" :disabled="blanks.length == 0"><?php esc_html_e( 'Remove all blanks', 'learnpress' ); ?></button> | |
| 10 | 10 | <button class="button" type="button" @click="clearContent"><?php esc_html_e( 'Clear content', 'learnpress' ); ?></button> |
| 11 | 11 | </p> |
| 12 | 12 | |
| 13 | 13 | <table class="fib-blanks"> |
| @@ -44,15 +44,15 @@ | ||
| 44 | 44 | <li> |
| 45 | 45 | <label> |
| 46 | 46 | <input type="radio" value="range" v-model="blank.comparison" @click="updateAnswerBlank($event, blank)"> |
| 47 | 47 | <?php esc_html_e( 'Range', 'learnpress' ); ?></label> |
| 48 | - <p class="description"><?php _e( 'Match any number in a range. Use <code>100, 200</code> will match any value from 100 to 200.', 'learnpress' ); ?></p> | |
| 48 | + <p class="description"><?php _e( 'Match any number in a range. Use <code>100, 200</code> to match any value from 100 to 200.', 'learnpress' ); ?></p> | |
| 49 | 49 | </li> |
| 50 | 50 | <li> |
| 51 | 51 | <label> |
| 52 | 52 | <input type="radio" value="any" v-model="blank.comparison" @click="updateAnswerBlank($event, blank)"> |
| 53 | 53 | <?php esc_html_e( 'Any', 'learnpress' ); ?></label> |
| 54 | - <p class="description"><?php _e( 'Match any value in a set of words. Use <code>fill, blank, question</code> will match any value in the set.', 'learnpress' ); ?></p> | |
| 54 | + <p class="description"><?php _e( 'Match any value in a set of words. Use <code>fill, blank, or question</code> to match any value in the set.', 'learnpress' ); ?></p> | |
| 55 | 55 | </li> |
| 56 | 56 | </ul> |
| 57 | 57 | </td> |
| 58 | 58 | </tr> |