I18N: Remove <kbd>
tags from translatable string in wp-admin/options-writing.php
.
Add translator comment. Props ramiy. Fixes #36249. git-svn-id: https://develop.svn.wordpress.org/trunk@37198 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
fc709f0024
commit
2e6c1d4d6c
@ -114,7 +114,15 @@ do_settings_fields('writing', 'remote_publishing'); // A deprecated section.
|
|||||||
if ( apply_filters( 'enable_post_by_email_configuration', true ) ) {
|
if ( apply_filters( 'enable_post_by_email_configuration', true ) ) {
|
||||||
?>
|
?>
|
||||||
<h2 class="title"><?php _e( 'Post via email' ) ?></h2>
|
<h2 class="title"><?php _e( 'Post via email' ) ?></h2>
|
||||||
<p><?php printf(__('To post to WordPress by email you must set up a secret email account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: <kbd>%s</kbd>, <kbd>%s</kbd>, <kbd>%s</kbd>.'), wp_generate_password(8, false), wp_generate_password(8, false), wp_generate_password(8, false)) ?></p>
|
<p><?php
|
||||||
|
printf(
|
||||||
|
/* translators: 1, 2, 3: examples of random email addresses */
|
||||||
|
__( 'To post to WordPress by email you must set up a secret email account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: %1$s, %2$s, %3$s.' ),
|
||||||
|
sprintf( '<kbd>%s</kbd>', wp_generate_password( 8, false ) ),
|
||||||
|
sprintf( '<kbd>%s</kbd>', wp_generate_password( 8, false ) ),
|
||||||
|
sprintf( '<kbd>%s</kbd>', wp_generate_password( 8, false ) )
|
||||||
|
);
|
||||||
|
?></p>
|
||||||
|
|
||||||
<table class="form-table">
|
<table class="form-table">
|
||||||
<tr>
|
<tr>
|
||||||
|
Loading…
Reference in New Issue
Block a user