zh.hk.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. (function (global, factory) {
  2. typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
  3. typeof define === 'function' && define.amd ? define(factory) :
  4. (global = global || self, global.ckplayerLanguage = factory());
  5. }(this, function () { 'use strict';
  6. /*
  7. *功能:包含播放機用到的全部相關語言文字
  8. */
  9. var language = {
  10. play: '播放',
  11. pause: '暫停',
  12. refresh: '重播',
  13. full: '全屏',
  14. exitFull: '退出全屏',
  15. webFull: '頁面全屏',
  16. exitWebFull: '退出頁面全屏',
  17. theatre: '劇場模式',
  18. exitTheatre: '退出劇場模式',
  19. volume: '音量:',
  20. muted: '靜音',
  21. exitmuted: '恢復音量',
  22. seek: 'seek:',
  23. waiting: '緩衝',
  24. live: '直播中',
  25. backLive: '返回直播',
  26. lookBack: '回看:',
  27. next: '下一集',
  28. screenshot: '視頻截圖',
  29. smallwindows: '小視窗播放功能',
  30. playbackrate: '倍速',
  31. playbackrateSuffix: '倍',
  32. track: '字幕',
  33. noTrack: '無字幕',
  34. definition: '清晰度',
  35. switchTo: '切換成:',
  36. closeTime: '{seconds}秒後可關閉廣告',
  37. closeAd: '關閉廣告',
  38. second: '秒',
  39. details: '查看詳情',
  40. copy: '複製',
  41. copySucceeded: '複製成功,可貼粘!',
  42. smallwindowsOpen: '小視窗功能已開啟',
  43. smallwindowsClose: '小視窗功能已關閉',
  44. screenshotStart: '截圖中,請稍候…',
  45. screenshotClose: '截圖功能已關閉',
  46. loopOpen: '迴圈播放',
  47. loopClose: '已關閉迴圈播放',
  48. close: '關閉',
  49. down: '下載',
  50. p50: '50%',
  51. p75: '75%',
  52. p100: '100%',
  53. timeScheduleAdjust: {
  54. prohibit: '視頻禁止拖動',
  55. prohibitBackOff: '視頻禁止重複觀看',
  56. prohibitForward: '視頻禁止快進',
  57. prohibitLookBack: '視頻禁止播放部分內容',
  58. prohibitForwardNotViewed: '視頻禁止播放未觀看的部分'
  59. },
  60. error: {
  61. noMessage: '未知錯誤',
  62. supportVideoError: '該流覽器版本太低,建議更換成其它瀏覽器',
  63. videoTypeError: '該瀏覽器不支持播放該視頻,建議更換成其它瀏覽器',
  64. loadingFailed: '加載失敗',
  65. emptied: '視頻檔案加載過程中出現錯誤',
  66. screenshot: '視頻截圖失敗',
  67. ajax: 'Ajax數據請求錯誤',
  68. noVideoContainer: '未找到放置視頻的容器'
  69. }
  70. };
  71. return language;
  72. }))