I18N: Make the minimum input length to start searching posts in the "Insert/edit link" modal localizable.
Props Toro_Unit, birgire, miyauchi, swissspidy, ocean90. Fixes #44662. git-svn-id: https://develop.svn.wordpress.org/trunk@46988 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
c8ac42b3dd
commit
38cfdae6e9
@ -507,9 +507,10 @@
|
||||
|
||||
searchInternalLinks: function() {
|
||||
var waiting,
|
||||
search = inputs.search.val() || '';
|
||||
search = inputs.search.val() || '',
|
||||
minInputLength = parseInt( wpLinkL10n.minInputLength, 10 ) || 3;
|
||||
|
||||
if ( search.length > 2 ) {
|
||||
if ( search.length >= minInputLength ) {
|
||||
rivers.recent.hide();
|
||||
rivers.search.show();
|
||||
|
||||
|
@ -1504,6 +1504,8 @@ function wp_default_scripts( &$scripts ) {
|
||||
'noMatchesFound' => __( 'No results found.' ),
|
||||
'linkSelected' => __( 'Link selected.' ),
|
||||
'linkInserted' => __( 'Link inserted.' ),
|
||||
/* translators: Minimum input length in characters to start searching posts in the "Insert/edit link" modal. */
|
||||
'minInputLength' => (int) _x( '3', 'minimum input length for searching post links' ),
|
||||
)
|
||||
);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user