Changeset 45926 for trunk/src/wp-admin/includes/revision.php
- Timestamp:
- 09/01/2019 05:12:43 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/revision.php
r45742 r45926 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 245 'timeAgo' => sprintf( __( '%s ago' ), human_time_diff( $modified_gmt, $now_gmt ) ), 245 246 'autosave' => $autosave, … … 284 285 'date' => date_i18n( __( 'M j, Y @ H:i' ), strtotime( $post->post_modified ) ), 285 286 'dateShort' => date_i18n( _x( 'j M @ H:i', 'revision date short format' ), strtotime( $post->post_modified ) ), 287 /* translators: %s: Human-readable time difference */ 286 288 'timeAgo' => sprintf( __( '%s ago' ), human_time_diff( strtotime( $post->post_modified_gmt ), $now_gmt ) ), 287 289 'autosave' => false, … … 398 400 <?php 399 401 printf( 402 /* translators: %s: user's display name */ 400 403 __( 'Autosave by %s' ), 401 404 '<span class="author-name">{{ data.attributes.author.name }}</span>' … … 407 410 <?php 408 411 printf( 412 /* translators: %s: user's display name */ 409 413 __( 'Current Revision by %s' ), 410 414 '<span class="author-name">{{ data.attributes.author.name }}</span>' … … 416 420 <?php 417 421 printf( 422 /* translators: %s: user's display name */ 418 423 __( 'Revision by %s' ), 419 424 '<span class="author-name">{{ data.attributes.author.name }}</span>'
Note: See TracChangeset
for help on using the changeset viewer.