Improve newly added strings for i18n:

* Use a placeholder for the theme name to be able to reorder words.
* Uppercase D for "Theme Details" to match existing strings.
* Merge two revision date formats.
* Add translator comment to strings with placeholders.

props obenland.
see #31776.

git-svn-id: https://develop.svn.wordpress.org/trunk@31905 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dominik Schilling (ocean90)
2015-03-26 20:55:34 +00:00
parent dacd36bcaa
commit 4b3cc5c55e
6 changed files with 26 additions and 8 deletions
+2 -2
View File
@@ -1700,7 +1700,7 @@ function wp_post_revision_title( $revision, $link = true ) {
return false;
/* translators: revision date format, see http://php.net/date */
$datef = _x( 'F j, Y @ H:i', 'revision date format');
$datef = _x( 'F j, Y @ H:i:s', 'revision date format' );
/* translators: 1: date */
$autosavef = _x( '%1$s [Autosave]', 'post revision title extra' );
/* translators: 1: date */
@@ -1736,7 +1736,7 @@ function wp_post_revision_title_expanded( $revision, $link = true ) {
$author = get_the_author_meta( 'display_name', $revision->post_author );
/* translators: revision date format, see http://php.net/date */
$datef = _x( 'F j, Y @ H:i:s', 'revision date format');
$datef = _x( 'F j, Y @ H:i:s', 'revision date format' );
$gravatar = get_avatar( $revision->post_author, 24 );