Make WordPress Core

Ticket #48244: 48244.patch

File 48244.patch, 905 bytes (added by shaharia.azam, 7 years ago)

_n() has been applied in script-loader.php when more than one results are found

  • src/wp-includes/script-loader.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    11751175                        /* translators: Number of results found when using jQuery UI Autocomplete. */
    11761176                        'oneResult'    => __( '1 result found. Use up and down arrow keys to navigate.' ),
    11771177                        /* translators: %d: Number of results found when using jQuery UI Autocomplete. */
    1178                         'manyResults'  => __( '%d results found. Use up and down arrow keys to navigate.' ),
     1178                        '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' ) ),
    11791179                        'itemSelected' => __( 'Item selected.' ),
    11801180                )
    11811181        );