message.go 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. package activity
  2. type Messages struct {
  3. Activities string
  4. ActionAll string
  5. ActionView string
  6. ActionEdit string
  7. ActionCreate string
  8. ActionDelete string
  9. ModelUserID string
  10. ModelCreatedAt string
  11. ModelAction string
  12. ModelCreator string
  13. ModelKeys string
  14. ModelName string
  15. ModelLabel string
  16. ModelLink string
  17. ModelDiffs string
  18. FilterAction string
  19. FilterCreatedAt string
  20. FilterCreator string
  21. FilterModel string
  22. DiffDetail string
  23. DiffNew string
  24. DiffDelete string
  25. DiffChanges string
  26. DiffField string
  27. DiffOld string
  28. DiffNow string
  29. DiffValue string
  30. }
  31. var Messages_en_US = &Messages{
  32. Activities: "Activities",
  33. ActionAll: "All",
  34. ActionView: "View",
  35. ActionEdit: "Edit",
  36. ActionCreate: "Create",
  37. ActionDelete: "Delete",
  38. ModelUserID: "Creator ID",
  39. ModelCreatedAt: "Date Time",
  40. ModelAction: "Action",
  41. ModelCreator: "Creator",
  42. ModelKeys: "Keys",
  43. ModelName: "Table Name",
  44. ModelLabel: "Menu Name",
  45. ModelLink: "Link",
  46. ModelDiffs: "Diffs",
  47. FilterAction: "Action",
  48. FilterCreatedAt: "Create Time",
  49. FilterCreator: "Creator",
  50. FilterModel: "Model Name",
  51. DiffDetail: "Detail",
  52. DiffNew: "New",
  53. DiffDelete: "Delete",
  54. DiffChanges: "Changes",
  55. DiffField: "Filed",
  56. DiffOld: "Old",
  57. DiffNow: "Now",
  58. DiffValue: "Value",
  59. }
  60. var Messages_zh_CN = &Messages{
  61. Activities: "活动",
  62. ActionAll: "全部",
  63. ActionView: "查看",
  64. ActionEdit: "编辑",
  65. ActionCreate: "创建",
  66. ActionDelete: "删除",
  67. ModelUserID: "操作者ID",
  68. ModelCreatedAt: "日期时间",
  69. ModelAction: "操作",
  70. ModelCreator: "操作者",
  71. ModelKeys: "表的主键值",
  72. ModelName: "表名",
  73. ModelLabel: "菜单名",
  74. ModelLink: "链接",
  75. ModelDiffs: "差异",
  76. FilterAction: "操作类型",
  77. FilterCreatedAt: "操作时间",
  78. FilterCreator: "操作人",
  79. FilterModel: "操作对象",
  80. DiffDetail: "详情",
  81. DiffNew: "新加",
  82. DiffDelete: "删除",
  83. DiffChanges: "修改",
  84. DiffField: "字段",
  85. DiffOld: "之前的值",
  86. DiffNow: "当前的值",
  87. DiffValue: "值",
  88. }