@@ -52,7 +52,7 @@ public function widget( $args, $instance ) {
52
52
<?php
53
53
printf (
54
54
/* translators: %s: version number */
55
- __ ( 'Version: %s ' , 'wporg-plugins ' ),
55
+ __ ( 'Version %s ' , 'wporg-plugins ' ),
56
56
'<strong> ' . esc_html ( get_post_meta ( $ post ->ID , 'version ' , true ) ) . '</strong> '
57
57
);
58
58
?>
@@ -69,7 +69,7 @@ public function widget( $args, $instance ) {
69
69
70
70
printf (
71
71
/* translators: %s: time since the last update */
72
- __ ( 'Last updated: %s ' , 'wporg-plugins ' ),
72
+ __ ( 'Last updated %s ' , 'wporg-plugins ' ),
73
73
/* translators: %s: time since the last update */
74
74
'<strong> ' . wp_kses ( sprintf ( __ ( '%s ago ' , 'wporg-plugins ' ), '<span> ' . human_time_diff ( $ modified_time ) . '</span> ' ), array ( 'span ' => true ) ) . '</strong> '
75
75
);
@@ -79,15 +79,15 @@ public function widget( $args, $instance ) {
79
79
<?php
80
80
printf (
81
81
/* translators: %s: active installations count */
82
- __ ( 'Active installations: %s ' , 'wporg-plugins ' ),
82
+ __ ( 'Active installations %s ' , 'wporg-plugins ' ),
83
83
'<strong> ' . esc_html ( Template::active_installs ( false ) ) . '</strong> '
84
84
);
85
85
?>
86
86
</li>
87
87
88
88
<?php if ( $ requires = (string ) get_post_meta ( $ post ->ID , 'requires ' , true ) ) : ?>
89
89
<li>
90
- <?php esc_html_e ( 'WordPress Version: ' , 'wporg-plugins ' ); ?>
90
+ <?php esc_html_e ( 'WordPress version ' , 'wporg-plugins ' ); ?>
91
91
<strong>
92
92
<?php
93
93
printf (
@@ -105,7 +105,7 @@ public function widget( $args, $instance ) {
105
105
<?php
106
106
printf (
107
107
/* translators: %s: version number */
108
- __ ( 'Tested up to: %s ' , 'wporg-plugins ' ),
108
+ __ ( 'Tested up to %s ' , 'wporg-plugins ' ),
109
109
'<strong> ' . esc_html ( $ tested_up_to ) . '</strong> '
110
110
);
111
111
?>
@@ -114,7 +114,7 @@ public function widget( $args, $instance ) {
114
114
115
115
<?php if ( $ requires_php = (string ) get_post_meta ( $ post ->ID , 'requires_php ' , true ) ) : ?>
116
116
<li>
117
- <?php esc_html_e ( 'PHP Version: ' , 'wporg-plugins ' ); ?>
117
+ <?php esc_html_e ( 'PHP version ' , 'wporg-plugins ' ); ?>
118
118
<strong>
119
119
<?php
120
120
printf (
@@ -135,9 +135,9 @@ public function widget( $args, $instance ) {
135
135
<li>
136
136
<?php
137
137
if ( 1 === $ available_languages_count ) {
138
- esc_html_e ( 'Language: ' , 'wporg-plugins ' );
138
+ esc_html_e ( 'Language ' , 'wporg-plugins ' );
139
139
} else {
140
- esc_html_e ( 'Languages: ' , 'wporg-plugins ' );
140
+ esc_html_e ( 'Languages ' , 'wporg-plugins ' );
141
141
}
142
142
143
143
echo '<div class="languages"> ' ;
@@ -208,7 +208,7 @@ public function widget( $args, $instance ) {
208
208
echo '<li class="clear"> ' ;
209
209
printf (
210
210
/* translators: %s: tag list */
211
- _n ( 'Tag: %s ' , 'Tags: %s ' , count ( $ term_links ), 'wporg-plugins ' ),
211
+ _n ( 'Tag %s ' , 'Tags %s ' , count ( $ term_links ), 'wporg-plugins ' ),
212
212
'<div class="tags"> ' . implode ( $ term_links ) . '</div> '
213
213
);
214
214
echo '</li> ' ;
0 commit comments