me-i18n-locale-en.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*!
  2. * This is a i18n.locale language object.
  3. *
  4. * English; This can serve as a template for other languages to translate
  5. *
  6. * @author
  7. * TBD
  8. *
  9. * @see
  10. * me-i18n.js
  11. *
  12. * @params
  13. * - exports - CommonJS, window ..
  14. */
  15. ;(function(exports, undefined) {
  16. "use strict";
  17. if (typeof exports.en === 'undefined') {
  18. exports.en = {
  19. // me-shim
  20. 'mejs.download-file': 'Download File',
  21. // mep-feature-contextmenu
  22. 'mejs.fullscreen-off': 'Turn off Fullscreen',
  23. 'mejs.fullscreen-on' : 'Go Fullscreen',
  24. // Duplicated from mep-feature-volume
  25. // 'mejs.unmute' : 'Unmute',
  26. // 'mejs.mute' : 'Mute',
  27. 'mejs.download-video' : 'Download Video',
  28. // mep-feature-fullscreen
  29. 'mejs.fullscreen' : 'Fullscreen',
  30. // mep-feature-jumpforward
  31. 'mejs.time-jump-forward': 'Jump forward %1 seconds',
  32. // mep-feature-playpause
  33. 'mejs.play': 'Play',
  34. 'mejs.pause': 'Pause',
  35. // mep-feature-postroll
  36. 'mejs.close' : 'Close',
  37. // mep-feature-progress
  38. 'mejs.time-slider': 'Time Slider',
  39. 'mejs.time-help-text': 'Use Left/Right Arrow keys to advance one second, Up/Down arrows to advance ten seconds.',
  40. // mep-feature-skipback
  41. 'mejs.time-skip-back': 'Skip back %1 seconds',
  42. // mep-feature-tracks
  43. 'mejs.captions-subtitles' : 'Captions/Subtitles',
  44. 'mejs.none' : 'None',
  45. // mep-feature-volume
  46. 'mejs.mute-toggle' : 'Mute Toggle',
  47. 'mejs.volume-help-text': 'Use Up/Down Arrow keys to increase or decrease volume.',
  48. 'mejs.unmute' : 'Unmute',
  49. 'mejs.mute' : 'Mute',
  50. 'mejs.volume-slider': 'Volume Slider',
  51. // mep-player
  52. 'mejs.video-player': 'Video Player',
  53. 'mejs.audio-player': 'Audio Player',
  54. // mep-feature-ads
  55. 'mejs.ad-skip': 'Skip ad',
  56. 'mejs.ad-skip-info': 'Skip in %1 seconds',
  57. 'mejs.source-chooser': 'Source Chooser'
  58. };
  59. }
  60. }(mejs.i18n.locale.strings));