IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
|
| 417 | 417 | noResults: ( typeof window.uiAutocompleteL10n !== 'undefined' ) ? window.uiAutocompleteL10n.noResults : '', |
| 418 | 418 | results: function( number ) { |
| 419 | 419 | if ( typeof window.uiAutocompleteL10n !== 'undefined' ) { |
| 420 | | if ( number > 1 ) { |
| 421 | | return window.uiAutocompleteL10n.manyResults.replace( '%d', number ); |
| 422 | | } |
| 423 | | |
| 424 | | return window.uiAutocompleteL10n.oneResult; |
| | 420 | return window.uiAutocompleteL10n.manyResults; |
| 425 | 421 | } |
| 426 | 422 | } |
| 427 | 423 | } |
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
|
| 228 | 228 | did_action( 'init' ) && $scripts->localize( 'jquery-ui-autocomplete', 'uiAutocompleteL10n', array( |
| 229 | 229 | 'noResults' => __( 'No search results.' ), |
| 230 | 230 | /* translators: Number of results found when using jQuery UI Autocomplete */ |
| 231 | | 'oneResult' => __( '1 result found. Use up and down arrow keys to navigate.' ), |
| 232 | | 'manyResults' => __( '%d results found. Use up and down arrow keys to navigate.' ), |
| | 231 | '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' ) ), |
| 233 | 232 | ) ); |
| 234 | 233 | |
| 235 | 234 | // deprecated, not used in core, most functionality is included in jQuery 1.3 |