Ticket #48244: 48244.5.diff
| File 48244.5.diff, 2.1 KB (added by , 7 years ago) |
|---|
-
src/js/_enqueues/admin/tags-suggest.js
136 136 noResults: window.uiAutocompleteL10n.noResults, 137 137 results: function( number ) { 138 138 if ( number > 1 ) { 139 return window.uiAutocompleteL10n.manyResults .replace( '%d', number );139 return window.uiAutocompleteL10n.manyResults; 140 140 } 141 141 142 142 return window.uiAutocompleteL10n.oneResult; -
src/js/_enqueues/vendor/tinymce/plugins/wplink/plugin.js
461 461 results: function( number ) { 462 462 if ( typeof window.uiAutocompleteL10n !== 'undefined' ) { 463 463 if ( number > 1 ) { 464 return window.uiAutocompleteL10n.manyResults .replace( '%d', number );464 return window.uiAutocompleteL10n.manyResults; 465 465 } 466 466 467 467 return window.uiAutocompleteL10n.oneResult; -
src/wp-includes/script-loader.php
1172 1172 'uiAutocompleteL10n', 1173 1173 array( 1174 1174 'noResults' => __( 'No results found.' ), 1175 /* translators: Number of results found when using jQuery UI Autocomplete. */1176 'oneResult' => __( '1 result found. Use up and down arrow keys to navigate.' ),1177 1175 /* translators: %d: Number of results found when using jQuery UI Autocomplete. */ 1178 'manyResults' => __( '%d results found. Use up and down arrow keys to navigate.'),1176 'manyResults' => _n( '%d result found. Use up and down arrow keys to navigate.', '%d results found. Use up and down arrow keys to navigate.', did_action( 'init' ) ), 1179 1177 'itemSelected' => __( 'Item selected.' ), 1180 1178 ) 1181 1179 );
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)