123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /*!
- * This is a i18n.locale language object.
- *
- * English; This can serve as a template for other languages to translate
- *
- * @author
- * TBD
- *
- * @see
- * me-i18n.js
- *
- * @params
- * - exports - CommonJS, window ..
- */
- ;(function(exports, undefined) {
- "use strict";
- if (typeof exports.en === 'undefined') {
- exports.en = {
- // me-shim
- 'mejs.download-file': 'Download File',
- // mep-feature-contextmenu
- 'mejs.fullscreen-off': 'Turn off Fullscreen',
- 'mejs.fullscreen-on' : 'Go Fullscreen',
- // Duplicated from mep-feature-volume
- // 'mejs.unmute' : 'Unmute',
- // 'mejs.mute' : 'Mute',
- 'mejs.download-video' : 'Download Video',
- // mep-feature-fullscreen
- 'mejs.fullscreen' : 'Fullscreen',
- // mep-feature-jumpforward
- 'mejs.time-jump-forward': 'Jump forward %1 seconds',
- // mep-feature-playpause
- 'mejs.play': 'Play',
- 'mejs.pause': 'Pause',
- // mep-feature-postroll
- 'mejs.close' : 'Close',
- // mep-feature-progress
- 'mejs.time-slider': 'Time Slider',
- 'mejs.time-help-text': 'Use Left/Right Arrow keys to advance one second, Up/Down arrows to advance ten seconds.',
- // mep-feature-skipback
- 'mejs.time-skip-back': 'Skip back %1 seconds',
- // mep-feature-tracks
- 'mejs.captions-subtitles' : 'Captions/Subtitles',
- 'mejs.none' : 'None',
- // mep-feature-volume
- 'mejs.mute-toggle' : 'Mute Toggle',
- 'mejs.volume-help-text': 'Use Up/Down Arrow keys to increase or decrease volume.',
- 'mejs.unmute' : 'Unmute',
- 'mejs.mute' : 'Mute',
- 'mejs.volume-slider': 'Volume Slider',
- // mep-player
- 'mejs.video-player': 'Video Player',
- 'mejs.audio-player': 'Audio Player',
-
- // mep-feature-ads
- 'mejs.ad-skip': 'Skip ad',
- 'mejs.ad-skip-info': 'Skip in %1 seconds',
- 'mejs.source-chooser': 'Source Chooser'
- };
- }
- }(mejs.i18n.locale.strings));
|