Changeset 45932 for trunk/src/wp-admin/includes/revision.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/revision.php
r45926 r45932 242 242 'date' => date_i18n( __( 'M j, Y @ H:i' ), $modified ), 243 243 'dateShort' => date_i18n( _x( 'j M @ H:i', 'revision date short format' ), $modified ), 244 /* translators: %s: Human-readable time difference */244 /* translators: %s: Human-readable time difference. */ 245 245 'timeAgo' => sprintf( __( '%s ago' ), human_time_diff( $modified_gmt, $now_gmt ) ), 246 246 'autosave' => $autosave, … … 285 285 'date' => date_i18n( __( 'M j, Y @ H:i' ), strtotime( $post->post_modified ) ), 286 286 'dateShort' => date_i18n( _x( 'j M @ H:i', 'revision date short format' ), strtotime( $post->post_modified ) ), 287 /* translators: %s: Human-readable time difference */287 /* translators: %s: Human-readable time difference. */ 288 288 'timeAgo' => sprintf( __( '%s ago' ), human_time_diff( strtotime( $post->post_modified_gmt ), $now_gmt ) ), 289 289 'autosave' => false, … … 400 400 <?php 401 401 printf( 402 /* translators: %s: user's display name*/402 /* translators: %s: User's display name. */ 403 403 __( 'Autosave by %s' ), 404 404 '<span class="author-name">{{ data.attributes.author.name }}</span>' … … 410 410 <?php 411 411 printf( 412 /* translators: %s: user's display name*/412 /* translators: %s: User's display name. */ 413 413 __( 'Current Revision by %s' ), 414 414 '<span class="author-name">{{ data.attributes.author.name }}</span>' … … 420 420 <?php 421 421 printf( 422 /* translators: %s: user's display name*/422 /* translators: %s: User's display name. */ 423 423 __( 'Revision by %s' ), 424 424 '<span class="author-name">{{ data.attributes.author.name }}</span>'
Note: See TracChangeset
for help on using the changeset viewer.