me-i18n-locale-zh.js 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*!
  2. * This is a i18n.locale language object.
  3. *
  4. * Chinese (Traditional)
  5. *
  6. * @author
  7. * Jalios (Twitter: @Jalios)
  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.zh === undefined) {
  19. exports.zh = {
  20. "mejs.plural-form": 0,
  21. // me-shim
  22. "mejs.download-file": "下載文件",
  23. // mep-feature-contextmenu
  24. "mejs.fullscreen-off": "關閉全屏",
  25. "mejs.fullscreen-on": "轉向全屏",
  26. "mejs.download-video": "下載視頻",
  27. // mep-feature-fullscreen
  28. "mejs.fullscreen": "全屏",
  29. // mep-feature-jumpforward
  30. //"mejs.time-jump-forward": "Jump forward %1 second(s)",
  31. // mep-feature-playpause
  32. "mejs.play": "播放",
  33. "mejs.pause": "暫停",
  34. // mep-feature-postroll
  35. "mejs.close": "關閉",
  36. // mep-feature-progress
  37. "mejs.time-slider": "時間滑動棒",
  38. "mejs.time-help-text": "使用左/右箭頭快進1秒,上/下箭頭快進10秒。",
  39. // mep-feature-skipback
  40. "mejs.time-skip-back": "跳躍式迴繞%1秒",
  41. // mep-feature-tracks
  42. "mejs.captions-subtitles": "字幕/標題",
  43. "mejs.none": "沒有",
  44. // mep-feature-volume
  45. "mejs.mute-toggle": "靜音切換",
  46. "mejs.volume-help-text": "使用上/下箭頭提高或降低音量。",
  47. "mejs.unmute": "取消靜音",
  48. "mejs.mute": "靜音",
  49. "mejs.volume-slider": "音量控制鍵",
  50. // mep-player
  51. "mejs.video-player": "視頻播放器",
  52. "mejs.audio-player": "音頻播放器",
  53. // mep-feature-ads
  54. //"mejs.ad-skip": "Skip ad",
  55. //"mejs.ad-skip-info": "Skip in %1 second(s)",
  56. // mep-feature-sourcechooser
  57. //"mejs.source-chooser": "Source Chooser"
  58. };
  59. }
  60. }(mejs.i18n.locale.strings));