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. * Sascha Greuel (Twitter: @SoftCreatR)
  9. *
  10. * @see
  11. * me-i18n.js
  12. *
  13. * @params
  14. * - exports - CommonJS, window ..
  15. */
  16. (function (exports) {
  17. "use strict";
  18. if (exports.en === undefined) {
  19. exports.en = {
  20. "mejs.plural-form": 1,
  21. // me-shim
  22. "mejs.download-file": "Download File",
  23. // mep-feature-contextmenu
  24. "mejs.fullscreen-off": "Turn off Fullscreen",
  25. "mejs.fullscreen-on": "Go Fullscreen",
  26. "mejs.download-video": "Download Video",
  27. // mep-feature-fullscreen
  28. "mejs.fullscreen": "Fullscreen",
  29. // mep-feature-jumpforward
  30. "mejs.time-jump-forward": ["Jump forward 1 second", "Jump forward %1 seconds"],
  31. // mep-feature-playpause
  32. "mejs.play": "Play",
  33. "mejs.pause": "Pause",
  34. // mep-feature-postroll
  35. "mejs.close": "Close",
  36. // mep-feature-progress
  37. "mejs.time-slider": "Time Slider",
  38. "mejs.time-help-text": "Use Left/Right Arrow keys to advance one second, Up/Down arrows to advance ten seconds.",
  39. // mep-feature-skipback
  40. "mejs.time-skip-back": ["Skip back 1 second", "Skip back %1 seconds"],
  41. // mep-feature-tracks
  42. "mejs.captions-subtitles": "Captions/Subtitles",
  43. "mejs.none": "None",
  44. // mep-feature-volume
  45. "mejs.mute-toggle": "Mute Toggle",
  46. "mejs.volume-help-text": "Use Up/Down Arrow keys to increase or decrease volume.",
  47. "mejs.unmute": "Unmute",
  48. "mejs.mute": "Mute",
  49. "mejs.volume-slider": "Volume Slider",
  50. // mep-player
  51. "mejs.video-player": "Video Player",
  52. "mejs.audio-player": "Audio Player",
  53. // mep-feature-ads
  54. "mejs.ad-skip": "Skip ad",
  55. "mejs.ad-skip-info": ["Skip in 1 second", "Skip in %1 seconds"],
  56. // mep-feature-sourcechooser
  57. "mejs.source-chooser": "Source Chooser"
  58. };
  59. }
  60. }(mejs.i18n.locale.strings));