messages.go 11 KB

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