Changeset 47094
- Timestamp:
- 01/21/2020 02:19:04 AM (5 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/js/_enqueues/vendor/mediaelement/wp-mediaelement.js
r46800 r47094 60 60 // Make sure we only fall back to a download link for flash files. 61 61 if ( -1 !== media.rendererName.indexOf( 'flash' ) || -1 !== media.rendererName.indexOf( 'flv' ) ) { 62 return '<a href="' + node.src + '">' + mejsL10n.strings['mejs.download- video'] + '</a>';62 return '<a href="' + node.src + '">' + mejsL10n.strings['mejs.download-file'] + '</a>'; 63 63 } 64 64 }; -
trunk/src/wp-includes/script-loader.php
r47088 r47094 985 985 'language' => strtolower( strtok( determine_locale(), '_-' ) ), 986 986 'strings' => array( 987 'mejs.download-file' => __( 'Download File' ), 987 988 'mejs.install-flash' => __( 'You are using a browser that does not have Flash player enabled or installed. Please turn on your Flash player plugin or download the latest version from https://get.adobe.com/flashplayer/' ), 988 'mejs.fullscreen-off' => __( 'Turn off Fullscreen' ),989 'mejs.fullscreen-on' => __( 'Go Fullscreen' ),990 'mejs.download-video' => __( 'Download Video' ),991 989 'mejs.fullscreen' => __( 'Fullscreen' ), 992 'mejs.time-jump-forward' => array( __( 'Jump forward 1 second' ), __( 'Jump forward %1 seconds' ) ),993 'mejs.loop' => __( 'Toggle Loop' ),994 990 'mejs.play' => __( 'Play' ), 995 991 'mejs.pause' => __( 'Pause' ), 996 'mejs.close' => __( 'Close' ),997 992 'mejs.time-slider' => __( 'Time Slider' ), 998 993 'mejs.time-help-text' => __( 'Use Left/Right Arrow keys to advance one second, Up/Down arrows to advance ten seconds.' ), 999 'mejs.time-skip-back' => array( __( 'Skip back 1 second' ), __( 'Skip back %1 seconds' ) ), 1000 'mejs.captions-subtitles' => __( 'Captions/Subtitles' ), 1001 'mejs.captions-chapters' => __( 'Chapters' ), 1002 'mejs.none' => __( 'None' ), 1003 'mejs.mute-toggle' => __( 'Mute Toggle' ), 994 'mejs.live-broadcast' => __( 'Live Broadcast' ), 1004 995 'mejs.volume-help-text' => __( 'Use Up/Down Arrow keys to increase or decrease volume.' ), 1005 996 'mejs.unmute' => __( 'Unmute' ), … … 1008 999 'mejs.video-player' => __( 'Video Player' ), 1009 1000 'mejs.audio-player' => __( 'Audio Player' ), 1010 'mejs.ad-skip' => __( 'Skip ad' ), 1011 'mejs.ad-skip-info' => array( __( 'Skip in 1 second' ), __( 'Skip in %1 seconds' ) ), 1012 'mejs.source-chooser' => __( 'Source Chooser' ), 1013 'mejs.stop' => __( 'Stop' ), 1014 'mejs.speed-rate' => __( 'Speed Rate' ), 1015 'mejs.live-broadcast' => __( 'Live Broadcast' ), 1001 'mejs.captions-subtitles' => __( 'Captions/Subtitles' ), 1002 'mejs.captions-chapters' => __( 'Chapters' ), 1003 'mejs.none' => __( 'None' ), 1016 1004 'mejs.afrikaans' => __( 'Afrikaans' ), 1017 1005 'mejs.albanian' => __( 'Albanian' ),
Note: See TracChangeset
for help on using the changeset viewer.