We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62f7c6f commit d8f349fCopy full SHA for d8f349f
1 file changed
classes/class-cpt-wplf-submission.php
@@ -118,7 +118,7 @@ function form_filter_dropdown() {
118
?>
119
<label for="filter-by-form" class="screen-reader-text">Filter by form</label>
120
<select name="form" id="filter-by-form">
121
- <option value="0"><?php _e('All Forms'); ?></option>
+ <option value="0"><?php _e('All Forms', 'wp-libre-form'); ?></option>
122
<?php foreach( $forms as $form ) : ?>
123
<option value="<?php echo $form->ID; ?>" <?php echo isset( $_REQUEST['form'] ) && $_REQUEST['form'] == $form->ID ? 'selected' : ''; ?>><?php echo $form->post_title; ?></option>
124
<?php endforeach; ?>
0 commit comments