Changeset 5888 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/widgets/class-meta.php
- Timestamp:
- 09/06/2017 09:00:21 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/widgets/class-meta.php
r5872 r5888 155 155 $languages = []; 156 156 157 // We assume that the main language is English US, even though this158 // is not true for all plugins. Add it the list for localized directories.159 if ( 'en_US' !== get_locale() ) {160 $languages['English (US)'] = sprintf(161 '<a href="%1$s">%2$s</a>',162 esc_url( "https://wordpress.org/plugins/{$slug}/" ),163 'English (US)'164 );165 }166 167 157 if ( ! empty( $locales ) ) { 168 158 $locale_names = wp_list_pluck( $locales, 'name', 'wp_locale' ); … … 188 178 } 189 179 180 // We assume that the main language is English US, even though this 181 // is not true for all plugins. 182 if ( $languages || 'en_US' !== get_locale() ) { 183 $languages['English (US)'] = sprintf( 184 '<a href="%1$s">%2$s</a>', 185 esc_url( "https://wordpress.org/plugins/{$slug}/" ), 186 'English (US)' 187 ); 188 } 189 190 190 ksort( $languages, SORT_NATURAL ); 191 191
Note: See TracChangeset
for help on using the changeset viewer.