model.php 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <?php
  2. return [
  3. 'user' => [
  4. 'id' => 'User ID',
  5. 'attribute' => 'User',
  6. 'nickname' => 'Nickname',
  7. 'username' => 'Username',
  8. 'password' => 'Password',
  9. 'credit' => 'Balance',
  10. 'invite_num' => 'Available Invitation Code',
  11. 'reset_date' => 'Reset date',
  12. 'port' => 'Port',
  13. 'traffic_used' => 'Data Usage',
  14. 'service' => 'Proxy',
  15. 'group' => 'Group',
  16. 'account_status' => 'Account Status',
  17. 'proxy_status' => 'Proxy Status',
  18. 'expired_date' => 'Expiration Date',
  19. 'role' => 'Role Permissions',
  20. 'wechat' => 'WeChat',
  21. 'qq' => 'QQ',
  22. 'remark' => 'Remark',
  23. 'uuid' => 'VMess UUID',
  24. 'proxy_passwd' => 'Proxy Password',
  25. 'proxy_method' => 'Encryption Method',
  26. 'usable_traffic' => 'Available Data',
  27. 'proxy_protocol' => 'Protocol',
  28. 'proxy_obfs' => 'Obfuscation',
  29. 'speed_limit' => 'Speed limit',
  30. 'inviter' => 'Inviter',
  31. 'created_date' => 'Registered at',
  32. ],
  33. 'common' => [
  34. 'extend' => 'Extension',
  35. 'sort' => 'Priority',
  36. 'description' => 'Description',
  37. 'type' => 'Type',
  38. 'level' => 'Level',
  39. ],
  40. 'country' => [
  41. 'code' => 'ISO Territory Code',
  42. 'icon' => 'ICON',
  43. 'name' => 'Territory name',
  44. ],
  45. 'subscribe' => [
  46. 'code' => 'Subscription Code',
  47. 'req_times' => 'Number of requests',
  48. 'updated_at' => 'Last Request Time',
  49. 'ban_time' => 'Banned Time',
  50. 'ban_desc' => 'Banned reason',
  51. 'req_ip' => 'Request IP',
  52. 'req_header' => 'Access Header',
  53. ],
  54. 'oauth' => [
  55. 'type' => 'Channels',
  56. 'identifier' => 'Unique identifier',
  57. ],
  58. 'user_group' => [
  59. 'attribute' => 'User Group',
  60. 'name' => 'Group Name',
  61. 'nodes' => 'Select Nodes',
  62. ],
  63. 'node' => [
  64. 'attribute' => 'Node',
  65. 'id' => 'Node ID',
  66. 'name' => 'Name',
  67. 'domain' => 'Domain Name',
  68. 'static' => 'Alive',
  69. 'online_user' => 'Online',
  70. 'data_consume' => 'Consumption Data',
  71. 'data_rate' => 'Data Consumption Ratio',
  72. 'ddns' => 'DDNS',
  73. 'ipv4' => 'IPv4 Address',
  74. 'ipv6' => 'IPv6 Address',
  75. 'push_port' => 'Message Push Port',
  76. 'rule_group' => 'Audit Group',
  77. 'traffic_limit' => 'Speed Limit',
  78. 'client_limit' => 'Devices Limit',
  79. 'label' => 'Tags',
  80. 'country' => 'Territory',
  81. 'udp' => 'UDP',
  82. 'display' => 'Display & Subscription',
  83. 'detection' => 'Node Network Detection',
  84. 'method' => 'Encryption Method',
  85. 'protocol' => 'Protocol',
  86. 'protocol_param' => 'Protocol parameters',
  87. 'obfs' => 'Obfuscation',
  88. 'obfs_param' => 'Obfuscation parameters',
  89. 'single' => 'Only Port',
  90. 'transfer' => 'Transit',
  91. 'service_port' => 'Service Port',
  92. 'single_passwd' => '[Only] Password',
  93. 'v2_alter_id' => 'Alter ID',
  94. 'v2_net' => 'Transport',
  95. 'v2_cover' => 'Spoofing type',
  96. 'v2_host' => 'Spoofing domain',
  97. 'v2_path' => 'Path | Key',
  98. 'v2_sni' => 'SNI',
  99. 'v2_tls' => 'TLS',
  100. 'v2_tls_provider' => 'TLS Configuration',
  101. 'relay_port' => 'Transit Port',
  102. ],
  103. 'node_auth' => [
  104. 'attribute' => 'Node Authorization',
  105. 'key' => 'Communication key <small>For nodes</small>',
  106. 'secret' => 'Reverse Communication Key',
  107. ],
  108. 'node_cert' => [
  109. 'attribute' => 'Domain Certificate',
  110. 'domain' => 'Domain Name',
  111. 'key' => 'KEY',
  112. 'pem' => 'PEM',
  113. 'issuer' => 'Issuing agency',
  114. 'signed_date' => 'Issue Date',
  115. 'expired_date' => 'Expiration Date',
  116. ],
  117. 'order' => [
  118. 'attribute' => 'Order',
  119. 'id' => 'Order ID',
  120. 'original_price' => 'Original price',
  121. 'price' => 'Actual Price',
  122. 'pay_way' => 'Payment method',
  123. 'status' => 'Order Status',
  124. ],
  125. 'goods' => [
  126. 'attribute' => 'Product',
  127. 'name' => 'Name',
  128. 'price' => 'Price',
  129. 'category' => 'Category',
  130. 'renew' => 'Data Reset Price',
  131. 'user_limit' => 'Speed limit',
  132. 'period' => 'Reset period',
  133. 'traffic' => 'Data limit',
  134. 'invite_num' => 'Gift Invitation Number',
  135. 'limit_num' => 'Limit purchase quantity',
  136. 'available_date' => 'Available Period',
  137. 'hot' => 'Best-selling',
  138. 'color' => 'Colors',
  139. 'logo' => 'Product Image',
  140. 'info' => 'Custom Info List',
  141. ],
  142. 'rule' => [
  143. 'attribute' => 'Audit Rule',
  144. 'name' => 'Description',
  145. 'pattern' => 'Value',
  146. ],
  147. 'rule_group' => [
  148. 'attribute' => 'Audit Group',
  149. 'name' => 'Group Name',
  150. 'type' => 'Audit mode',
  151. 'rules' => 'Select Audit Rule',
  152. ],
  153. 'role' => [
  154. 'attribute' => 'Role',
  155. 'name' => 'Name',
  156. 'permissions' => 'Permissions',
  157. ],
  158. 'permission' => [
  159. 'attribute' => 'Permission Behavior',
  160. 'description' => 'Description',
  161. 'name' => 'Route Name',
  162. ],
  163. 'article' => [
  164. 'attribute' => 'Article',
  165. 'category' => 'Category',
  166. 'language' => 'Language',
  167. 'logo' => 'Image',
  168. 'created_at' => 'Published Date',
  169. 'updated_at' => 'Last Update',
  170. ],
  171. 'coupon' => [
  172. 'attribute' => 'Coupon',
  173. 'name' => 'Coupon Name',
  174. 'sn' => 'Coupon Code',
  175. 'logo' => 'Coupon Image',
  176. 'value' => 'Amount of preference',
  177. 'priority' => 'Priority',
  178. 'usable_times' => 'Useable times',
  179. 'minimum' => 'Discount condition',
  180. 'used' => 'Number of individual useable times',
  181. 'levels' => 'Ranking limit',
  182. 'groups' => 'Group Limit',
  183. 'users_whitelist' => 'Licensed User',
  184. 'users_blacklist' => 'Forbid User',
  185. 'services_whitelist' => 'Licensed Product',
  186. 'services_blacklist' => 'Forbid product',
  187. 'newbie' => 'Newcomer Exclusive',
  188. 'num' => 'Quantity',
  189. ],
  190. 'aff' => [
  191. 'invitee' => 'Consumer',
  192. 'amount' => 'Consumption Amount',
  193. 'commission' => 'Rebate amount',
  194. 'updated_at' => 'Processed at',
  195. 'created_at' => 'Order Time',
  196. ],
  197. 'referral' => [
  198. 'created_at' => 'Application Time',
  199. 'user' => 'Request Account',
  200. 'amount' => 'Amount to cash-out',
  201. 'id' => 'Referral ID',
  202. ],
  203. 'notification' => [
  204. 'address' => 'Receive Address',
  205. 'created_at' => 'Delivery Time',
  206. 'status' => 'Delivery Status',
  207. ],
  208. 'ip' => [
  209. 'network_type' => 'Protocol Type',
  210. 'info' => 'Location Info',
  211. ],
  212. 'user_traffic' => [
  213. 'upload' => 'Upload',
  214. 'download' => 'Download',
  215. 'total' => 'Total',
  216. 'log_time' => 'Record Time',
  217. ],
  218. 'user_data_modify' => [
  219. 'before' => 'Pre-change Data',
  220. 'after' => 'Data after change',
  221. 'created_at' => 'Operation Date/Time',
  222. ],
  223. 'user_credit' => [
  224. 'before' => 'Balance before operation',
  225. 'after' => 'Balance after operation',
  226. 'amount' => 'Amount of change',
  227. 'created_at' => 'Operation Date/Time',
  228. ],
  229. ];