LanguageTemplateManager

Language

此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.gf.qytechs.cn/scripts/513138/1472653/LanguageTemplateManager.js

  1. // 語言範本函數庫
  2. (function() {
  3. 'use strict';
  4. window.languageTemplates = function(lang) {
  5. const styles = {
  6. zh: {
  7. inputStyle: `
  8. position: absolute !important;
  9. font-weight: bold !important;
  10. right: 205px !important; /* 中文特定的右邊距 */
  11. width: 80px !important;
  12. top: 20px !important;
  13. background-color: transparent !important;
  14. color: red !important;
  15. border: none !important;
  16. z-index: 2 !important;
  17. display: inline-block !important;
  18. `
  19. },
  20. ja: {
  21. inputStyle: `
  22. position: absolute !important;
  23. font-weight: bold !important;
  24. right: 338px !important; /* 日文特定的右邊距 */
  25. width: 80px !important;
  26. top: 20px !important;
  27. background-color: transparent !important;
  28. color: red !important;
  29. border: none !important;
  30. z-index: 2 !important;
  31. display: inline-block !important;
  32. `
  33. },
  34. en: {
  35. inputStyle: `
  36. position: absolute !important;
  37. font-weight: bold !important;
  38. right: 281px !important; /* 英文特定的右邊距 */
  39. width: 80px !important;
  40. top: 20px !important;
  41. background-color: transparent !important;
  42. color: red !important;
  43. border: none !important;
  44. z-index: 2 !important;
  45. display: inline-block !important;
  46. `
  47. },
  48. };
  49.  
  50. // 根據語言返回對應的模板、警報和按鈕
  51. if (lang.startsWith('zh-CN')) {
  52. return {
  53. templates: {
  54. "模版 1": "这是模版1的内容。",
  55. "模版 2": "这是模版2的内容。",
  56. "模版 3": "这是模版3的内容。",
  57. "模版 4": "这是模版4的内容。",
  58. "模版 5": "这是模版5的内容。"
  59. },
  60. alerts: {
  61. saveSuccess: "模版已保存!",
  62. deleteConfirm: "确定要删除选中的模版吗?",
  63. deleteSuccess: "模版已删除!",
  64. editorNotFound: "未找到具体的编辑器区域元素",
  65. iframeNotFound: "未找到 iframe 元素",
  66. enterTemplateName: "模版名称",
  67. clearCacheConfirmation: "此操作将删除所有模块名称及内容,将继续执行此操作吗?",
  68. clearCachePrompt: "請輸入 'delete' 以確認清除緩存:",
  69. clearCacheSuccess: "緩存已成功清除!",
  70. clearCacheCancel: "清除緩存操作已取消!",
  71. templateChangeConfirmation: "选择新模板将清除当前输入框的内容,是否确认?" // 添加的新警报
  72. },
  73. buttons: {
  74. save: "保存模版",
  75. delete: "删除模版"
  76. },
  77. menuCommands: {
  78. clearCache: "清除緩存"
  79. },
  80. styles: styles.zh // 將樣式包含進來
  81. };
  82. } else if (lang.startsWith('zh')) {
  83. return {
  84. templates: {
  85. "範本 1": "這是範本1的內容。",
  86. "範本 2": "這是範本2的內容。",
  87. "範本 3": "這是範本3的內容。",
  88. "範本 4": "這是範本4的內容。",
  89. "範本 5": "這是範本5的內容。"
  90. },
  91. alerts: {
  92. saveSuccess: "範本已保存!",
  93. deleteConfirm: "確定要刪除選中的範本嗎?",
  94. deleteSuccess: "範本已刪除!",
  95. editorNotFound: "未找到具體的編輯器區域元素",
  96. iframeNotFound: "未找到 iframe 元素",
  97. enterTemplateName: "範本名稱",
  98. clearCacheConfirmation: "此操作將刪除所有範本名稱及內容,將繼續執行此操作嗎?",
  99. clearCachePrompt: "請輸入 'delete' 以確認清除緩存:",
  100. clearCacheSuccess: "緩存已成功清除!",
  101. clearCacheCancel: "清除緩存操作已取消!",
  102. templateChangeConfirmation: "選擇新範本將清除當前輸入框的內容,是否確認?" // 添加的新警報
  103. },
  104. buttons: {
  105. save: "保存範本",
  106. delete: "刪除範本"
  107. },
  108. menuCommands: {
  109. clearCache: "清除緩存"
  110. },
  111. styles: styles.zh // 將樣式包含進來
  112. };
  113. } else if (lang.startsWith('en')) {
  114. return {
  115. templates: {
  116. "Template 1": "This is the content of Template 1.",
  117. "Template 2": "This is the content of Template 2.",
  118. "Template 3": "This is the content of Template 3.",
  119. "Template 4": "This is the content of Template 4.",
  120. "Template 5": "This is the content of Template 5."
  121. },
  122. alerts: {
  123. saveSuccess: "Template saved!",
  124. deleteConfirm: "Are you sure you want to delete the selected template?",
  125. deleteSuccess: "Template deleted!",
  126. editorNotFound: "Editor area element not found",
  127. iframeNotFound: "Iframe element not found",
  128. enterTemplateName: "Template",
  129. clearCacheConfirmation: "This action will delete all template names and contents. Do you want to continue?",
  130. clearCachePrompt: "Please enter 'delete' to confirm clearing the cache:",
  131. clearCacheSuccess: "Cache cleared successfully!",
  132. clearCacheCancel: "Cache clearing operation cancelled!",
  133. templateChangeConfirmation: "Choosing a new template will clear the current input box content. Are you sure?" // 添加的新警报
  134. },
  135. buttons: {
  136. save: "Save Template",
  137. delete: "Delete Template"
  138. },
  139. menuCommands: {
  140. clearCache: "Clear Cache"
  141. },
  142. styles: styles.en // 預設為英文樣式
  143. };
  144. } else if (lang.startsWith('ja')) {
  145. return {
  146. templates: {
  147. "テンプレート 1": "これはテンプレート1の内容です。",
  148. "テンプレート 2": "これはテンプレート2の内容です。",
  149. "テンプレート 3": "これはテンプレート3の内容です。",
  150. "テンプレート 4": "これはテンプレート4の内容です。",
  151. "テンプレート 5": "これはテンプレート5の内容です。"
  152. },
  153. alerts: {
  154. saveSuccess: "テンプレートが保存されました!",
  155. deleteConfirm: "選択したテンプレートを削除しますか?",
  156. deleteSuccess: "テンプレートが削除されました!",
  157. editorNotFound: "エディターエリアが見つかりません",
  158. iframeNotFound: "iframeが見つかりません",
  159. enterTemplateName: "テンプレート名",
  160. clearCacheConfirmation: "この操作はすべてのテンプレート名と内容を削除します。続行しますか?",
  161. clearCachePrompt: "キャッシュをクリアするには「delete」と入力してください:",
  162. clearCacheSuccess: "キャッシュが正常にクリアされました!",
  163. clearCacheCancel: "キャッシュクリア操作がキャンセルされました!",
  164. templateChangeConfirmation: "新しいテンプレートを選択すると、現在の入力ボックスの内容がクリアされます。続行しますか?" // 添加的新警报
  165. },
  166. buttons: {
  167. save: "テンプレートを保存",
  168. delete: "テンプレートを削除"
  169. },
  170. menuCommands: {
  171. clearCache: "キャッシュをクリア"
  172. },
  173. styles: styles.ja // 將樣式包含進來
  174. };
  175. } else {
  176. return {
  177. templates: {
  178. "Template 1": "This is the content of Template 1.",
  179. "Template 2": "This is the content of Template 2.",
  180. "Template 3": "This is the content of Template 3.",
  181. "Template 4": "This is the content of Template 4.",
  182. "Template 5": "This is the content of Template 5."
  183. },
  184. alerts: {
  185. saveSuccess: "Template saved!",
  186. deleteConfirm: "Are you sure you want to delete the selected template?",
  187. deleteSuccess: "Template deleted!",
  188. editorNotFound: "Editor area element not found",
  189. iframeNotFound: "Iframe element not found",
  190. enterTemplateName: "Template",
  191. clearCacheConfirmation: "This action will delete all template names and contents. Do you want to continue?",
  192. clearCachePrompt: "Please enter 'delete' to confirm clearing the cache:",
  193. clearCacheSuccess: "Cache cleared successfully!",
  194. clearCacheCancel: "Cache clearing operation cancelled!",
  195. templateChangeConfirmation: "Choosing a new template will clear the current input box content. Are you sure?" // 添加的新警报
  196. },
  197. buttons: {
  198. save: "Save Template",
  199. delete: "Delete Template"
  200. },
  201. menuCommands: {
  202. clearCache: "Clear Cache"
  203. },
  204. styles: styles.en // 預設為英文樣式
  205. };
  206. }
  207. };
  208. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址