I18N: Fix placeholders and add translator comments after [36695].

See #35705.
Built from https://develop.svn.wordpress.org/trunk@36697


git-svn-id: http://core.svn.wordpress.org/trunk@36664 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2016-02-24 21:49:26 +00:00
parent ae9e63805d
commit 024ffe4980
3 changed files with 5 additions and 3 deletions

View File

@ -79,7 +79,8 @@ if ( isset($_GET['update']) ) {
if ( empty( $edit_link ) ) { if ( empty( $edit_link ) ) {
$messages[] = __( 'User added.' ); $messages[] = __( 'User added.' );
} else { } else {
$messages[] = sprintf( __( 'User added. <a href="%1$s">Edit User</a>' ), $edit_link ); /* translators: %s: edit page url */
$messages[] = sprintf( __( 'User added. <a href="%s">Edit user</a>' ), $edit_link );
} }
} }
} }

View File

@ -246,7 +246,8 @@ if ( isset($_GET['update']) ) {
if ( empty( $edit_link ) ) { if ( empty( $edit_link ) ) {
$messages[] = __( 'User has been added to your site.' ); $messages[] = __( 'User has been added to your site.' );
} else { } else {
$messages[] = sprintf( __( 'User has been added to your site. <a href="%1$s">Edit User</a>' ), $edit_link ); /* translators: %s: edit page url */
$messages[] = sprintf( __( 'User has been added to your site. <a href="%s">Edit user</a>' ), $edit_link );
} }
break; break;
case "addexisting": case "addexisting":

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.5-alpha-36696'; $wp_version = '4.5-alpha-36697';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.