|
@@ 261-263 (lines=3) @@
|
| 258 |
|
if ( ! $show_only_email_and_button ) { |
| 259 |
|
echo wpautop( $subscribe_logged_in ); |
| 260 |
|
} |
| 261 |
|
if ( $show_subscribers_total && $subscribers_total ) { |
| 262 |
|
/* translators: %s: number of folks following the blog */ |
| 263 |
|
echo wpautop( sprintf( _n( 'Join %s other follower', 'Join %s other followers', $subscribers_total ), number_format_i18n( $subscribers_total ) ) ); |
| 264 |
|
} |
| 265 |
|
?> |
| 266 |
|
<?php else : ?> |
|
@@ 271-273 (lines=3) @@
|
| 268 |
|
if ( ! $show_only_email_and_button ) { |
| 269 |
|
echo wpautop( $subscribe_text ); |
| 270 |
|
} |
| 271 |
|
if ( $show_subscribers_total && $subscribers_total ) { |
| 272 |
|
/* translators: %s: number of folks following the blog */ |
| 273 |
|
echo wpautop( sprintf( _n( 'Join %s other follower', 'Join %s other followers', $subscribers_total ), number_format_i18n( $subscribers_total ) ) ); |
| 274 |
|
} |
| 275 |
|
?> |
| 276 |
|
<p><input type="text" name="email" style="width: 95%; padding: 1px 2px" |