messages.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. package admin
  2. import (
  3. "github.com/qor5/x/i18n"
  4. )
  5. const I18nExampleKey i18n.ModuleKey = "I18nExampleKey"
  6. type Messages struct {
  7. FilterTabsAll string
  8. FilterTabsHasUnreadNotes string
  9. FilterTabsActive string
  10. }
  11. var Messages_en_US = &Messages{
  12. FilterTabsAll: "All",
  13. FilterTabsHasUnreadNotes: "Has Unread Notes",
  14. FilterTabsActive: "Active",
  15. }
  16. var Messages_zh_CN = &Messages{
  17. FilterTabsAll: "全部",
  18. FilterTabsHasUnreadNotes: "未读备注",
  19. FilterTabsActive: "有效",
  20. }
  21. type Messages_ModelsI18nModuleKey struct {
  22. Roles string
  23. Users string
  24. Posts string
  25. PostsID string
  26. PostsTitle string
  27. PostsHeroImage string
  28. PostsBody string
  29. Example string
  30. Settings string
  31. Post string
  32. PostsBodyImage string
  33. SeoPost string
  34. SeoVariableTitle string
  35. SeoVariableSiteName string
  36. PageBuilder string
  37. Pages string
  38. SharedContainers string
  39. DemoContainers string
  40. Templates string
  41. Categories string
  42. ECManagement string
  43. ECDashboard string
  44. Orders string
  45. Products string
  46. SiteManagement string
  47. SEO string
  48. UserManagement string
  49. Profile string
  50. FeaturedModelsManagement string
  51. InputHarnesses string
  52. ListEditorExample string
  53. Customers string
  54. ListModels string
  55. MicrositeModels string
  56. Workers string
  57. ActivityLogs string
  58. MediaLibrary string
  59. PagesID string
  60. PagesTitle string
  61. PagesSlug string
  62. PagesLocale string
  63. PagesNotes string
  64. PagesDraftCount string
  65. PagesOnline string
  66. Page string
  67. PagesStatus string
  68. PagesSchedule string
  69. PagesCategoryID string
  70. PagesTemplateSelection string
  71. PagesEditContainer string
  72. WebHeader string
  73. WebHeadersColor string
  74. Header string
  75. WebFooter string
  76. WebFootersEnglishUrl string
  77. WebFootersJapaneseUrl string
  78. Footer string
  79. VideoBanner string
  80. VideoBannersAddTopSpace string
  81. VideoBannersAddBottomSpace string
  82. VideoBannersAnchorID string
  83. VideoBannersVideo string
  84. VideoBannersBackgroundVideo string
  85. VideoBannersMobileBackgroundVideo string
  86. VideoBannersVideoCover string
  87. VideoBannersMobileVideoCover string
  88. VideoBannersHeading string
  89. VideoBannersPopupText string
  90. VideoBannersText string
  91. VideoBannersLinkText string
  92. VideoBannersLink string
  93. Heading string
  94. HeadingsAddTopSpace string
  95. HeadingsAddBottomSpace string
  96. HeadingsAnchorID string
  97. HeadingsHeading string
  98. HeadingsFontColor string
  99. HeadingsBackgroundColor string
  100. HeadingsLink string
  101. HeadingsLinkText string
  102. HeadingsLinkDisplayOption string
  103. HeadingsText string
  104. BrandGrid string
  105. BrandGridsAddTopSpace string
  106. BrandGridsAddBottomSpace string
  107. BrandGridsAnchorID string
  108. BrandGridsBrands string
  109. ListContent string
  110. ListContentsAddTopSpace string
  111. ListContentsAddBottomSpace string
  112. ListContentsAnchorID string
  113. ListContentsBackgroundColor string
  114. ListContentsItems string
  115. ListContentsLink string
  116. ListContentsLinkText string
  117. ListContentsLinkDisplayOption string
  118. ImageContainer string
  119. ImageContainersAddTopSpace string
  120. ImageContainersAddBottomSpace string
  121. ImageContainersAnchorID string
  122. ImageContainersBackgroundColor string
  123. ImageContainersTransitionBackgroundColor string
  124. ImageContainersImage string
  125. Image string
  126. InNumber string
  127. InNumbersAddTopSpace string
  128. InNumbersAddBottomSpace string
  129. InNumbersAnchorID string
  130. InNumbersHeading string
  131. InNumbersItems string
  132. InNumbers string
  133. ContactForm string
  134. ContactFormsAddTopSpace string
  135. ContactFormsAddBottomSpace string
  136. ContactFormsAnchorID string
  137. ContactFormsHeading string
  138. ContactFormsText string
  139. ContactFormsSendButtonText string
  140. ContactFormsFormButtonText string
  141. ContactFormsMessagePlaceholder string
  142. ContactFormsNamePlaceholder string
  143. ContactFormsEmailPlaceholder string
  144. ContactFormsThankyouMessage string
  145. ContactFormsActionUrl string
  146. ContactFormsPrivacyPolicy string
  147. }
  148. var Messages_zh_CN_ModelsI18nModuleKey = &Messages_ModelsI18nModuleKey{
  149. Posts: "帖子 示例",
  150. PostsID: "ID",
  151. PostsTitle: "标题",
  152. PostsHeroImage: "主图",
  153. PostsBody: "内容",
  154. Example: "QOR5演示",
  155. Settings: "SEO 设置",
  156. Post: "帖子",
  157. PostsBodyImage: "内容图片",
  158. SeoPost: "帖子",
  159. SeoVariableTitle: "标题",
  160. SeoVariableSiteName: "站点名称",
  161. Roles: "权限管理",
  162. Users: "用户管理",
  163. PageBuilder: "页面管理菜单",
  164. Pages: "页面管理",
  165. SharedContainers: "公用组件",
  166. DemoContainers: "示例组件",
  167. Templates: "模板页面",
  168. Categories: "目录管理",
  169. ECManagement: "电子商务管理",
  170. ECDashboard: "电子商务仪表盘",
  171. Orders: "订单管理",
  172. Products: "产品管理",
  173. SiteManagement: "站点管理菜单",
  174. SEO: "SEO 管理",
  175. UserManagement: "用户管理菜单",
  176. Profile: "个人页面",
  177. FeaturedModelsManagement: "特色模块管理菜单",
  178. InputHarnesses: "Input 示例",
  179. ListEditorExample: "ListEditor 示例",
  180. Customers: "Customers 示例",
  181. ListModels: "发布带排序及分页模块 示例",
  182. MicrositeModels: "Microsite 示例",
  183. Workers: "后台工作进程管理",
  184. ActivityLogs: "操作日志",
  185. MediaLibrary: "媒体库",
  186. PagesID: "ID",
  187. PagesTitle: "标题",
  188. PagesSlug: "Slug",
  189. PagesLocale: "地区",
  190. PagesNotes: "备注",
  191. PagesDraftCount: "草稿数",
  192. PagesOnline: "在线",
  193. Page: "Page",
  194. PagesStatus: "PagesStatus",
  195. PagesSchedule: "PagesSchedule",
  196. PagesCategoryID: "PagesCategoryID",
  197. PagesTemplateSelection: "PagesTemplateSelection",
  198. PagesEditContainer: "PagesEditContainer",
  199. WebHeader: "WebHeader",
  200. WebHeadersColor: "WebHeadersColor",
  201. Header: "Header",
  202. WebFooter: "WebFooter",
  203. WebFootersEnglishUrl: "WebFootersEnglishUrl",
  204. WebFootersJapaneseUrl: "WebFootersJapaneseUrl",
  205. Footer: "Footer",
  206. VideoBanner: "VideoBanner",
  207. VideoBannersAddTopSpace: "VideoBannersAddTopSpace",
  208. VideoBannersAddBottomSpace: "VideoBannersAddBottomSpace",
  209. VideoBannersAnchorID: "VideoBannersAnchorID",
  210. VideoBannersVideo: "VideoBannersVideo",
  211. VideoBannersBackgroundVideo: "VideoBannersBackgroundVideo",
  212. VideoBannersMobileBackgroundVideo: "VideoBannersMobileBackgroundVideo",
  213. VideoBannersVideoCover: "VideoBannersVideoCover",
  214. VideoBannersMobileVideoCover: "VideoBannersMobileVideoCover",
  215. VideoBannersHeading: "VideoBannersHeading",
  216. VideoBannersPopupText: "VideoBannersPopupText",
  217. VideoBannersText: "VideoBannersText",
  218. VideoBannersLinkText: "VideoBannersLinkText",
  219. VideoBannersLink: "VideoBannersLink",
  220. Heading: "Heading",
  221. HeadingsAddTopSpace: "HeadingsAddTopSpace",
  222. HeadingsAddBottomSpace: "HeadingsAddBottomSpace",
  223. HeadingsAnchorID: "HeadingsAnchorID",
  224. HeadingsHeading: "HeadingsHeading",
  225. HeadingsFontColor: "HeadingsFontColor",
  226. HeadingsBackgroundColor: "HeadingsBackgroundColor",
  227. HeadingsLink: "HeadingsLink",
  228. HeadingsLinkText: "HeadingsLinkText",
  229. HeadingsLinkDisplayOption: "HeadingsLinkDisplayOption",
  230. HeadingsText: "HeadingsText",
  231. BrandGrid: "BrandGrid",
  232. BrandGridsAddTopSpace: "BrandGridsAddTopSpace",
  233. BrandGridsAddBottomSpace: "BrandGridsAddBottomSpace",
  234. BrandGridsAnchorID: "BrandGridsAnchorID",
  235. BrandGridsBrands: "BrandGridsBrands",
  236. ListContent: "ListContent",
  237. ListContentsAddTopSpace: "ListContentsAddTopSpace",
  238. ListContentsAddBottomSpace: "ListContentsAddBottomSpace",
  239. ListContentsAnchorID: "ListContentsAnchorID",
  240. ListContentsBackgroundColor: "ListContentsBackgroundColor",
  241. ListContentsItems: "ListContentsItems",
  242. ListContentsLink: "ListContentsLink",
  243. ListContentsLinkText: "ListContentsLinkText",
  244. ListContentsLinkDisplayOption: "ListContentsLinkDisplayOption",
  245. ImageContainer: "ImageContainer",
  246. ImageContainersAddTopSpace: "ImageContainersAddTopSpace",
  247. ImageContainersAddBottomSpace: "ImageContainersAddBottomSpace",
  248. ImageContainersAnchorID: "ImageContainersAnchorID",
  249. ImageContainersBackgroundColor: "ImageContainersBackgroundColor",
  250. ImageContainersTransitionBackgroundColor: "ImageContainersTransitionBackgroundColor",
  251. ImageContainersImage: "ImageContainersImage",
  252. Image: "Image",
  253. InNumber: "InNumber",
  254. InNumbersAddTopSpace: "InNumbersAddTopSpace",
  255. InNumbersAddBottomSpace: "InNumbersAddBottomSpace",
  256. InNumbersAnchorID: "InNumbersAnchorID",
  257. InNumbersHeading: "InNumbersHeading",
  258. InNumbersItems: "InNumbersItems",
  259. InNumbers: "InNumbers",
  260. ContactForm: "ContactForm",
  261. ContactFormsAddTopSpace: "ContactFormsAddTopSpace",
  262. ContactFormsAddBottomSpace: "ContactFormsAddBottomSpace",
  263. ContactFormsAnchorID: "ContactFormsAnchorID",
  264. ContactFormsHeading: "ContactFormsHeading",
  265. ContactFormsText: "ContactFormsText",
  266. ContactFormsSendButtonText: "ContactFormsSendButtonText",
  267. ContactFormsFormButtonText: "ContactFormsFormButtonText",
  268. ContactFormsMessagePlaceholder: "ContactFormsMessagePlaceholder",
  269. ContactFormsNamePlaceholder: "ContactFormsNamePlaceholder",
  270. ContactFormsEmailPlaceholder: "ContactFormsEmailPlaceholder",
  271. ContactFormsThankyouMessage: "ContactFormsThankyouMessage",
  272. ContactFormsActionUrl: "ContactFormsActionUrl",
  273. ContactFormsPrivacyPolicy: "ContactFormsPrivacyPolicy",
  274. }