Fix plugin i18n strings

This commit is contained in:
Jb 2019-11-23 10:34:19 +01:00
parent 52fd2b08dc
commit 7e8c847471
13 changed files with 86 additions and 86 deletions

View file

@ -13,7 +13,7 @@ use WP_Post;
<div class="form-field">
<label for="5ftf-pledge-email">
<?php esc_html_e( 'Administrator Email Address', 'wordpressorg' ); ?>
<?php esc_html_e( 'Administrator Email Address', 'wporg-5ftf' ); ?>
</label>
<input
type="email"
@ -26,19 +26,19 @@ use WP_Post;
<?php echo $readonly ? 'readonly' : ''; ?>
/>
<p id="5ftf-pledge-email-help">
<?php esc_html_e( "This address will be used to confirm your organizations contribution profile, and later manage any changes. Please make sure that it's a group address (e.g., wp-contributors@example.com) so that it persists across employee transitions.", 'wordpressorg' ); ?>
<?php esc_html_e( 'This address will be used to confirm your organizations contribution profile, and later manage any changes. Please make sure that its a group address (e.g., wp-contributors@example.com) so that it persists across employee transitions.', 'wporg-5ftf' ); ?>
</p>
<?php if ( is_admin() ) : ?>
<?php if ( $data['pledge-email-confirmed'] ) : ?>
<p class="email-status is-confirmed">
<span class="dashicons dashicons-yes-alt" aria-hidden="true"></span>
<?php esc_html_e( 'Confirmed', 'wporg' ); ?>
<?php esc_html_e( 'Confirmed', 'wporg-5ftf' ); ?>
</p>
<?php else : ?>
<p class="email-status is-unconfirmed">
<span class="dashicons dashicons-warning" aria-hidden="true"></span>
<?php esc_html_e( 'Unconfirmed', 'wporg' ); ?>
<?php esc_html_e( 'Unconfirmed', 'wporg-5ftf' ); ?>
</p>
<?php submit_button(
'Resend Confirmation',