IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
|
| 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 _n( '%d results found. Use up and down arrow keys to navigate.' ); |
| 140 | 140 | } |
| 141 | 141 | |
| 142 | | return window.uiAutocompleteL10n.oneResult; |
| | 142 | return _n( '%d result found. Use up and down arrow keys to navigate.' ); |
| 143 | 143 | } |
| 144 | 144 | } |
| 145 | 145 | }, options ); |
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
|
| 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 _n( '%d results found. Use up and down arrow keys to navigate.' ); |
| 465 | 465 | } |
| 466 | 466 | |
| 467 | | return window.uiAutocompleteL10n.oneResult; |
| | 467 | return _n( '%d result found. Use up and down arrow keys to navigate.' ); |
| 468 | 468 | } |
| 469 | 469 | } |
| 470 | 470 | } |