Ticket #1585: 1585.patch
File 1585.patch, 3.2 KB (added by , 9 years ago) |
---|
-
trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/index.php
15 15 get_template_part( 'plugin-card' ); 16 16 } 17 17 } else { 18 echo '<p class="no-plugin-results"> No plugins match your request.</p>';18 echo '<p class="no-plugin-results">' . __( 'No plugins match your request.', 'wporg-plugins' ) . '</p>'; 19 19 } 20 20 ?> 21 21 -
trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/single-plugin.php
53 53 54 54 <div class="" style="width: 212px; float: right;"> 55 55 <p> 56 <strong> Requires:</strong> <?php printf( __('%s or higher', 'wporg-plugins' ), wporg_plugins_template_requires() ); ?><br />57 <strong> Compatible up to:</strong> <?php echo wporg_plugins_template_compatible_up_to(); ?><br />58 <strong> Last Updated:</strong> <?php echo wporg_plugins_template_last_updated(); ?><br />59 <strong> Active Installs:</strong> <?php echo worg_plugins_template_active_installs( false ); ?><br />56 <strong><?php __( 'Requires:', 'wporg-plugins' ); ?></strong> <?php printf( __('%s or higher', 'wporg-plugins' ), wporg_plugins_template_requires() ); ?><br /> 57 <strong><?php __( 'Compatible up to:', 'wporg-plugins' ); ?></strong> <?php echo wporg_plugins_template_compatible_up_to(); ?><br /> 58 <strong><?php __( 'Last Updated:', 'wporg-plugins' ); ?></strong> <?php echo wporg_plugins_template_last_updated(); ?><br /> 59 <strong><?php __( 'Active Installs:', 'wporg-plugins' ); ?></strong> <?php echo worg_plugins_template_active_installs( false ); ?><br /> 60 60 <meta itemprop="dateModified" content="<?php the_time('Y-m-d'); ?>" /> 61 61 </p> 62 62 </div> -
trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/template-tags.php
64 64 } 65 65 66 66 if ( $and_more ) { 67 return sprintf( '<cite> By: %s, and others.</cite>', implode(', ', $author_links ) ); 67 return sprintf( 68 '<cite>%s</cite>', 69 sprintf( 70 /* translators: %s: users list */ 71 __( 'By: %s, and others.', 'wporg-plugins' ), 72 implode(', ', $author_links ) 73 ) 74 ); 68 75 } else { 69 return sprintf( '<cite> By: %s</cite>', implode(', ', $author_links ) ); 76 return sprintf( 77 '<cite>%s</cite>', 78 sprintf( 79 /* translators: %s: user name */ 80 __( 'By: %s', 'wporg-plugins' ), 81 implode(', ', $author_links ) 82 ) 83 ); 70 84 } 71 85 } 72 86