i18n.js 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. W3C def language codes is :
  3. language-code = primary-code ( "-" subcode )
  4. primary-code ISO 639-1 ( the names of language with 2 code )
  5. subcode ISO 3166 ( the names of countries )
  6. NOTE: use lowercase to prevent case typo from user!
  7. Use this as shown below..... */
  8. function i18n (lang) {
  9. this.lang = lang;
  10. this.tran = (text) => {
  11. if (tranTxt[this.lang] && tranTxt[this.lang][text]) {
  12. return tranTxt[this.lang][text];
  13. }
  14. else {
  15. return text;
  16. }
  17. };
  18. }
  19. // add translation text here
  20. const tranTxt = {
  21. 'zh-cn' : {
  22. 'Danmaku is loading': '弹幕加载中',
  23. 'Top': '顶部',
  24. 'Bottom': '底部',
  25. 'Rolling': '滚动',
  26. 'Input danmaku, hit Enter': '输入弹幕,回车发送',
  27. 'About author': '关于作者',
  28. 'DPlayer feedback': '播放器意见反馈',
  29. 'About DPlayer': '关于 DPlayer 播放器',
  30. 'Loop': '洗脑循环',
  31. 'Speed': '速度',
  32. 'Opacity for danmaku': '弹幕透明度',
  33. 'Normal': '正常',
  34. 'Please input danmaku content!': '要输入弹幕内容啊喂!',
  35. 'Set danmaku color': '设置弹幕颜色',
  36. 'Set danmaku type': '设置弹幕类型',
  37. 'Show danmaku': '显示弹幕',
  38. 'Video load failed': '视频加载失败',
  39. 'Danmaku load failed': '弹幕加载失败',
  40. 'Danmaku send failed': '弹幕发送失败',
  41. 'Switching to': '正在切换至',
  42. 'Switched to': '已经切换至',
  43. 'quality': '画质',
  44. 'FF': '快进',
  45. 'REW': '快退',
  46. 'Unlimited danmaku': '海量弹幕',
  47. 'Send danmaku': '发送弹幕',
  48. 'Setting': '设置',
  49. 'Full screen': '全屏',
  50. 'Web full screen': '页面全屏',
  51. 'Send': '发送',
  52. 'Screenshot': '截图',
  53. 's': '秒',
  54. 'Show subtitle': '显示字幕',
  55. 'Hide subtitle': '隐藏字幕',
  56. 'Volume': '音量',
  57. 'Live': '直播',
  58. 'Video info': '视频统计信息',
  59. },
  60. 'zh-tw' : {
  61. 'Danmaku is loading': '彈幕載入中',
  62. 'Top': '頂部',
  63. 'Bottom': '底部',
  64. 'Rolling': '滾動',
  65. 'Input danmaku, hit Enter': '輸入彈幕,Enter 發送',
  66. 'About author': '關於作者',
  67. 'DPlayer feedback': '播放器意見回饋',
  68. 'About DPlayer': '關於 DPlayer 播放器',
  69. 'Loop': '循環播放',
  70. 'Speed': '速度',
  71. 'Opacity for danmaku': '彈幕透明度',
  72. 'Normal': '正常',
  73. 'Please input danmaku content!': '請輸入彈幕內容啊!',
  74. 'Set danmaku color': '設定彈幕顏色',
  75. 'Set danmaku type': '設定彈幕類型',
  76. 'Show danmaku': '顯示彈幕',
  77. 'Video load failed': '影片載入失敗',
  78. 'Danmaku load failed': '彈幕載入失敗',
  79. 'Danmaku send failed': '彈幕發送失敗',
  80. 'Switching to': '正在切換至',
  81. 'Switched to': '已經切換至',
  82. 'quality': '畫質',
  83. 'FF': '快進',
  84. 'REW': '快退',
  85. 'Unlimited danmaku': '巨量彈幕',
  86. 'Send danmaku': '發送彈幕',
  87. 'Setting': '設定',
  88. 'Full screen': '全螢幕',
  89. 'Web full screen': '頁面全螢幕',
  90. 'Send': '發送',
  91. 'Screenshot': '截圖',
  92. 's': '秒',
  93. 'Show subtitle': '顯示字幕',
  94. 'Hide subtitle': '隱藏字幕',
  95. 'Volume': '音量',
  96. 'Live': '直播',
  97. 'Video info': '影片統計訊息',
  98. }
  99. };
  100. export default i18n;