Changeset 4802
- Timestamp:
- 01/25/2007 02:08:54 AM (18 years ago)
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.1/wp-admin/admin-functions.php
r4796 r4802 831 831 </td> 832 832 <td><?php the_author() ?></td> 833 <td><?php if ( '0000-00-00 00:00:00' ==$post->post_modified ) _e('Unpublished'); else echo mysql2date( 'Y-m-d g:i a', $post->post_modified ); ?></td>833 <td><?php if ( '0000-00-00 00:00:00' ==$post->post_modified ) _e('Unpublished'); else echo mysql2date( __('Y-m-d g:i a'), $post->post_modified ); ?></td> 834 834 <td><a href="<?php the_permalink(); ?>" rel="permalink" class="edit"><?php _e( 'View' ); ?></a></td> 835 835 <td><?php if ( current_user_can( 'edit_page', $id ) ) { echo "<a href='page.php?action=edit&post=$id' class='edit'>" . __( 'Edit' ) . "</a>"; } ?></td> -
branches/2.1/wp-admin/edit.php
r4659 r4802 178 178 case 'date': 179 179 ?> 180 <td><?php if ( '0000-00-00 00:00:00' ==$post->post_modified ) _e('Unpublished'); else the_time( 'Y-m-d \<\b\r \/\> g:i:s a'); ?></td>180 <td><?php if ( '0000-00-00 00:00:00' ==$post->post_modified ) _e('Unpublished'); else the_time(_('Y-m-d \<\b\r \/\> g:i:s a')); ?></td> 181 181 <?php 182 182 break; … … 280 280 <?php comment_text() ?> 281 281 282 <p><?php comment_date( 'M j, g:i A'); ?> — [282 <p><?php comment_date(__('M j, g:i A')); ?> — [ 283 283 <?php 284 284 if ( current_user_can('edit_post', $comment->comment_post_ID) ) { -
branches/2.1/wp-admin/options-general.php
r4480 r4802 61 61 <tr> 62 62 <th scope="row"><?php _e('<abbr title="Coordinated Universal Time">UTC</abbr> time is:') ?> </th> 63 <td><code><?php echo gmdate( 'Y-m-d g:i:s a'); ?></code></td>63 <td><code><?php echo gmdate(__('Y-m-d g:i:s a')); ?></code></td> 64 64 </tr> 65 65 <tr> -
trunk/wp-admin/admin-functions.php
r4796 r4802 831 831 </td> 832 832 <td><?php the_author() ?></td> 833 <td><?php if ( '0000-00-00 00:00:00' ==$post->post_modified ) _e('Unpublished'); else echo mysql2date( 'Y-m-d g:i a', $post->post_modified ); ?></td>833 <td><?php if ( '0000-00-00 00:00:00' ==$post->post_modified ) _e('Unpublished'); else echo mysql2date( __('Y-m-d g:i a'), $post->post_modified ); ?></td> 834 834 <td><a href="<?php the_permalink(); ?>" rel="permalink" class="edit"><?php _e( 'View' ); ?></a></td> 835 835 <td><?php if ( current_user_can( 'edit_page', $id ) ) { echo "<a href='page.php?action=edit&post=$id' class='edit'>" . __( 'Edit' ) . "</a>"; } ?></td> -
trunk/wp-admin/edit.php
r4659 r4802 178 178 case 'date': 179 179 ?> 180 <td><?php if ( '0000-00-00 00:00:00' ==$post->post_modified ) _e('Unpublished'); else the_time( 'Y-m-d \<\b\r \/\> g:i:s a'); ?></td>180 <td><?php if ( '0000-00-00 00:00:00' ==$post->post_modified ) _e('Unpublished'); else the_time(_('Y-m-d \<\b\r \/\> g:i:s a')); ?></td> 181 181 <?php 182 182 break; … … 280 280 <?php comment_text() ?> 281 281 282 <p><?php comment_date( 'M j, g:i A'); ?> — [282 <p><?php comment_date(__('M j, g:i A')); ?> — [ 283 283 <?php 284 284 if ( current_user_can('edit_post', $comment->comment_post_ID) ) { -
trunk/wp-admin/options-general.php
r4480 r4802 61 61 <tr> 62 62 <th scope="row"><?php _e('<abbr title="Coordinated Universal Time">UTC</abbr> time is:') ?> </th> 63 <td><code><?php echo gmdate( 'Y-m-d g:i:s a'); ?></code></td>63 <td><code><?php echo gmdate(__('Y-m-d g:i:s a')); ?></code></td> 64 64 </tr> 65 65 <tr>
Note: See TracChangeset
for help on using the changeset viewer.