From 478f8c16dcc6e480b7765152f147a36b9a404a30 Mon Sep 17 00:00:00 2001 From: Dominik Schilling Date: Mon, 18 Jul 2016 11:30:28 +0000 Subject: [PATCH] Media: Update list of translatable strings for MediaElement.js. Fixes #37394. Built from https://develop.svn.wordpress.org/trunk@38089 git-svn-id: http://core.svn.wordpress.org/trunk@38030 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/script-loader.php | 33 +++++++++++++++++++++------------ wp-includes/version.php | 2 +- 2 files changed, 22 insertions(+), 13 deletions(-) diff --git a/wp-includes/script-loader.php b/wp-includes/script-loader.php index c24fd649cb..f624335a7e 100644 --- a/wp-includes/script-loader.php +++ b/wp-includes/script-loader.php @@ -339,18 +339,27 @@ function wp_default_scripts( &$scripts ) { did_action( 'init' ) && $scripts->localize( 'mediaelement', 'mejsL10n', array( 'language' => get_bloginfo( 'language' ), 'strings' => array( - 'Close' => __( 'Close' ), - 'Fullscreen' => __( 'Fullscreen' ), - 'Download File' => __( 'Download File' ), - 'Download Video' => __( 'Download Video' ), - 'Play/Pause' => __( 'Play/Pause' ), - 'Mute Toggle' => __( 'Mute Toggle' ), - 'None' => __( 'None' ), - 'Turn off Fullscreen' => __( 'Turn off Fullscreen' ), - 'Go Fullscreen' => __( 'Go Fullscreen' ), - 'Unmute' => __( 'Unmute' ), - 'Mute' => __( 'Mute' ), - 'Captions/Subtitles' => __( 'Captions/Subtitles' ) + 'Close' => __( 'Close' ), + 'Fullscreen' => __( 'Fullscreen' ), + 'Turn off Fullscreen' => __( 'Turn off Fullscreen' ), + 'Go Fullscreen' => __( 'Go Fullscreen' ), + 'Download File' => __( 'Download File' ), + 'Download Video' => __( 'Download Video' ), + 'Play' => __( 'Play' ), + 'Pause' => __( 'Pause' ), + 'Captions/Subtitles' => __( 'Captions/Subtitles' ), + 'None' => __( 'None', 'no captions/subtitles' ), + 'Time Slider' => __( 'Time Slider' ), + 'Jump forward %1 seconds' => __( 'Jump forward %1 seconds' ), + 'Skip back %1 seconds' => __( 'Skip back %1 seconds' ), + 'Video Player' => __( 'Video Player' ), + 'Audio Player' => __( 'Audio Player' ), + 'Volume Slider' => __( 'Volume Slider' ), + 'Mute Toggle' => __( 'Mute Toggle' ), + 'Unmute' => __( 'Unmute' ), + 'Mute' => __( 'Mute' ), + 'Use Up/Down Arrow keys to increase or decrease volume.' => __( 'Use Up/Down Arrow keys to increase or decrease volume.' ), + 'Use Left/Right Arrow keys to advance one second, Up/Down arrows to advance ten seconds.' => 'Use Left/Right Arrow keys to advance one second, Up/Down arrows to advance ten seconds.', ), ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 5bffd92e1d..fb31c78b54 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-beta3-38088'; +$wp_version = '4.6-beta3-38089'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.