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:
Sergey Biryukov 2019-12-18 01:13:14 +00:00
parent c8ac42b3dd
commit 38cfdae6e9
2 changed files with 5 additions and 2 deletions

View File

@ -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();

View File

@ -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' ),
)
);