en.js 2.3 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:'Play',
  11. pause:'Pause',
  12. refresh:'Refresh',
  13. full:'Fullscreen',
  14. exitFull:'Non-Fullscreen',
  15. webFull:'Web fullscreen',
  16. exitWebFull:'Non-Web fullscreen',
  17. theatre:'Theatre',
  18. exitTheatre:'Non-theatre',
  19. volume:'Volume:',
  20. muted:'Mute',
  21. exitmuted:'Unmute',
  22. seek:'Seek:',
  23. waiting:'Waiting',
  24. live:'Liveing',
  25. backLive:'Back live',
  26. lookBack:'Look back:',
  27. next:'Next episode',
  28. screenshot:'Screenshot',
  29. smallwindows:'Small windows',
  30. playbackrate:'Speed',
  31. playbackrateSuffix:' Speed',
  32. track:'Subtitle',
  33. noTrack:'No subtitle',
  34. definition:'Definition',
  35. switchTo:'Switched from:',
  36. closeTime:'The advertisement can be closed in {seconds} seconds',
  37. closeAd:'Close ad',
  38. second:'seconds',
  39. details:'View details',
  40. copy:'Copy',
  41. copySucceeded:'Copy succeeded, can be pasted!',
  42. smallwindowsOpen:'The small window function is turned on',
  43. screenshotStart:'Screenshot, please wait...',
  44. smallwindowsClose:'The small window function is turned off',
  45. screenshotClose:'Screenshot function is turned off',
  46. loopOpen:'Loop open',
  47. loopClose:'Loop close',
  48. close:'Close',
  49. down:'Down',
  50. p50:'50%',
  51. p75:'75%',
  52. p100:'100%',
  53. timeScheduleAdjust:{
  54. prohibit:'No dragging',
  55. prohibitBackOff:'No repeat viewing',
  56. prohibitForward:'Fast forward prohibited',
  57. prohibitLookBack:'Some content is forbidden to play',
  58. prohibitForwardNotViewed:'Disable playback of parts not viewed'
  59. },
  60. error:{
  61. noMessage:'Unknown error',
  62. supportVideoError:'The browser version is too low. It is recommended to replace it with another browser',
  63. videoTypeError:'This browser does not support playing this video. It is recommended to replace it with another browser',
  64. loadingFailed:'Loading failed',
  65. emptied:'An error occurred while loading the frequency file',
  66. screenshot:'Screenshot failed',
  67. ajax:'Ajax data request error',
  68. noVideoContainer:'No video container'
  69. }
  70. };
  71. return language;
  72. }))