lan.js 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. //設定cookie
  2. function setCookie(name,value)
  3. {
  4. var Days = 30;
  5. var exp = new Date();
  6. exp.setTime(exp.getTime() + Days*24*60*60*1000);
  7. document.cookie = name + "="+ escape (value) + ";expires=" + exp.toGMTString();
  8. }
  9. //獲取cookie
  10. function getCookie(name)
  11. {
  12. var arr,reg=new RegExp("(^| )"+name+"=([^;]*)(;|$)");
  13. if(arr=document.cookie.match(reg))
  14. return unescape(arr[2]);
  15. else
  16. return null;
  17. }
  18. var zh = {
  19. "make_video" : "影片製作",
  20. "make_slides" : "投影影片製作",
  21. "make_video_long": "長影片製作",
  22. "login" : "登入",
  23. "user_profile": "會員資料",
  24. "logout": "登出",
  25. "en": "英文",
  26. "zh": "中文",
  27. "choose_character": "選擇人物",
  28. "usage_intro": "使用說明",
  29. "history": "歷史紀錄",
  30. "preview_videos": "預覽影片",
  31. "video_link": "影片連結",
  32. "video_title": "標題",
  33. "p_choose_character": "請選擇人物",
  34. "lines": "台詞",
  35. "img_link": "影像連結",
  36. "processing_progress": "處理進度",
  37. "usage_intro": "使用說明",
  38. "one_line_to_one_img": "1. 一句台詞請對應提供一個影像連結做為搭配",
  39. "sup_img_profile": "2. 影像連結檔案格式支援:",
  40. "submit_to_wait": "3. 點選“送出”之後需等待一段影片製作的時間,請您耐心等候,待製作完畢可於通知網址查看",
  41. "add_eng": "加入英文:",
  42. "submut": "送出",
  43. "privacy_term": "同意隱私政策及使用條款",
  44. "newHere": "還沒有帳號?",
  45. "goRegister": "註冊",
  46. "pricing" : "早鳥方案",
  47. "errorEmail": "請輸入正確E-mail",
  48. "errorPsd": "密碼至少為4個字元",
  49. "used": "已使用",
  50. "left": "未使用",
  51. "sec": "秒"
  52. };
  53. var en = {
  54. "make_video" : "Make Videos",
  55. "make_slides" : "Make Videos By Slides",
  56. "make_video_long": "Make Long Videos",
  57. "login" : "Login",
  58. "user_profile": "User Profile",
  59. "logout": "Logout",
  60. "en": "English",
  61. "zh": "Chinese",
  62. "choose_character": "Choose Character",
  63. "usage_intro": "Usage Introduction",
  64. "history": "History",
  65. "preview_videos": "Preview Videos",
  66. "video_link": "Video Link",
  67. "video_title": "Video Title",
  68. "p_choose_character": "Choose Character",
  69. "lines": "Lines",
  70. "img_link": "Image Link",
  71. "processing_progress": "Processing Progress",
  72. "usage_intro": "Usage Introduction",
  73. "one_line_to_one_img": "1. Please Provide an Image Link Corresponding to a Line as a Collocation",
  74. "sup_img_profile": "2. Support File Format:",
  75. "submit_to_wait": "3. After Clicking Submit, You Will Need To Wait For A Period Of Time For The Production Of The Video. Please Wait Patiently. You Can Check It At The Notification URL When The Production Is Completed.",
  76. "add_eng": "Allow English Lines:",
  77. "submut": "Submit",
  78. "privacy_term": "I Agree to privacy policy and terms of use.",
  79. "newHere": "New here?",
  80. "goRegister": "REGISTER",
  81. "pricing" : "Pricing",
  82. "errorEmail": "Please enter valid Email format.",
  83. "errorPsd": "Passwords must be at least 4 characters long.",
  84. "used": "Already Used",
  85. "left": "Left",
  86. "sec": "Sec"
  87. };
  88. // 4. 轉換
  89. function changeLan(val) {
  90. var val = val.value;
  91. console.log(`val: ${val}`);
  92. setCookie('lan', val);
  93. $('[set-lan]').each(function(){
  94. var me = $(this);
  95. var a = me.attr('set-lan').split(':');
  96. var p = a[0]; //文字放置位置
  97. var m = a[1]; //文字標示
  98. //用虎選擇語言後保存在cookie中,這裡讀取cooikes的語言版本
  99. var lan = getCookie('lan');
  100. console.log(lan);
  101. //選取語言文字
  102. switch(lan){
  103. case 'zh':
  104. var t = zh[m];
  105. console.log(t);
  106. break;
  107. case 'en':
  108. var t = en[m];
  109. console.log(t);
  110. break;
  111. default:
  112. var t = zh[m];
  113. console.log(t);
  114. }
  115. //所選語言沒有就換
  116. if(t==undefined) t = en[m];
  117. if(t==undefined) t = zh[m];
  118. if(t==undefined) return true; //都沒有就跳出
  119. //文字放置位置有(html,val等,可以自己添加)
  120. switch(p){
  121. case 'html':
  122. me.html(t);
  123. break;
  124. case 'placeholder':
  125. me.placeholder(t);
  126. console.log("placeholder");
  127. console.log(t);
  128. case 'val':
  129. case 'value':
  130. me.val(t);
  131. break;
  132. default:
  133. me.html(t);
  134. }
  135. });
  136. }
  137. // js裡面的轉換
  138. function get_lan(m)
  139. {
  140. //獲取文字
  141. var lan = getCookie('lan'); //語言版本
  142. //選取語言文字
  143. switch(lan){
  144. case 'zh':
  145. var t = zh[m];
  146. break;
  147. case 'hk':
  148. var t = hk[m];
  149. break;
  150. default:
  151. var t = en[m];
  152. }
  153. //如果沒有找到就轉換其他語言
  154. if(t==undefined) t = zh[m];
  155. if(t==undefined) t = en[m];
  156. if(t==undefined) t = hk[m];
  157. if(t==undefined) t = m; //如果還是沒有就直接用標示
  158. return t;
  159. }
  160. // 預設中文版
  161. var lan = getCookie('lan');
  162. console.log(`目前語言版本: ${lan}`);
  163. changeLan('zh');