mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-03 12:14:25 +00:00
Editor: word count: better names for types.
Also fix it in wp_trim_words(). Fixes #30966. git-svn-id: https://develop.svn.wordpress.org/trunk@33440 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -401,10 +401,10 @@ function wp_default_scripts( &$scripts ) {
|
||||
|
||||
$scripts->add( 'word-count', "/wp-admin/js/word-count$suffix.js", array(), false, 1 );
|
||||
did_action( 'init' ) && $scripts->localize( 'word-count', 'wordCountL10n', array(
|
||||
/* translators: If your word count is based on single characters (East Asian characters),
|
||||
enter 'characters', or 'all' to include spaces. Otherwise, enter 'words'.
|
||||
/* translators: If your word count is based on single characters (e.g. East Asian characters),
|
||||
enter 'characters_excluding_spaces' or 'characters_including_spaces'. Otherwise, enter 'words'.
|
||||
Do not translate into your own language. */
|
||||
'type' => _x( 'words', 'word count: words, characters or all?' ),
|
||||
'type' => _x( 'words', 'Word count type. Do not translate!' ),
|
||||
'shortcodes' => ! empty( $GLOBALS['shortcode_tags'] ) ? array_keys( $GLOBALS['shortcode_tags'] ) : array()
|
||||
) );
|
||||
|
||||
|
||||
Reference in New Issue
Block a user