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