game_app.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?php
  2. /**
  3. * game_app.php UTF-8
  4. *
  5. *
  6. * @date : 2017/11/28 17:53
  7. *
  8. * @license 这不是一个自由软件,未经授权不许任何使用和传播。
  9. * @author : guxiannong <gxn@huosdk.com>
  10. * @version : HUOSDK 8.0
  11. */
  12. $_namespaces = 'game app';
  13. $_return_arr = [
  14. 'default choice' => 'all',/* 默认选择 */
  15. 'choose the state' => 'choose state',/* 选择状态 */
  16. 'choose a game' => 'choose game',/* 选择游戏 */
  17. 'all tags' => 'all tags',/* 选择游戏 */
  18. 'game tags' => 'game tags',/* 游戏标签 */
  19. 'current status' => 'current status',/* 当前状态 */
  20. 'game name' => 'game name',/* 游戏名称 */
  21. 'game platform' => 'platform',/* 游戏平台 */
  22. 'choose a platform' => 'choose platform',/* 选择平台 */
  23. 'select the time interval' => 'select time interval',/* 创建时间 */
  24. 'start time' => 'start time',/* 开始时间 */
  25. 'end time' => 'end time',/* 结束时间 */
  26. 'game management' => 'game management',/* app游戏管理标题 */
  27. 'search button' => 'search',/* 搜索按钮 */
  28. 'sort button' => 'sort',/* 排序按钮 */
  29. 'online msg' => 'sure to online',/* 上线提示 */
  30. 'offline msg' => 'sure to offline',/* 下线提示 */
  31. 'set online' => 'online',/* 上线 */
  32. 'set offline' => 'offline',/* 下线 */
  33. 'set hot msg' => 'sure set hot',/* 设置热门 */
  34. 'off hot msg' => 'sure off hot',/* 取消热门 */
  35. 'set hot' => 'set hot',/* 设置热门 */
  36. 'off hot' => 'off hot',/* 取消热门 */
  37. 'set free msg' => 'sure free',/* 设置公益 */
  38. 'off free msg' => 'sure off free',/* 取消公益 */
  39. 'set free' => 'set free',/* 设置公益 */
  40. 'off free' => 'off free',/* 取消公益 */
  41. 'set new msg' => 'sure set new',/* 设置新游 */
  42. 'off new msg' => 'sure off new',/* 取消新游 */
  43. 'set new' => 'set new',/* 设置新游 */
  44. 'off new' => 'off new',/* 取消新游 */
  45. 'set recommend' => 'set recommend',/* 设置推荐 */
  46. 'off recommend' => 'off recommend',/* 取消推荐 */
  47. 'set recommend msg' => 'sure recommend',/* 确定设置推荐 */
  48. 'off recommend msg' => 'sure off recommend',/* 确定取消推荐 */
  49. 'list sort show' => 'sort',/* 列表排序 */
  50. 'list game name show' => 'game name(icon)',/* 列表游戏名和图标 */
  51. 'list game tags show' => 'game tags',/* 列表游戏标签 */
  52. 'list game platform' => 'game platform',/* 列表游戏平台 */
  53. 'list game line type' => 'line type',/* 是否网游 */
  54. 'list game is hot' => 'is hot',/* 是否热门 */
  55. 'list game is new' => 'is new',/* 是否新游 */
  56. 'list game recommend' => 'recommend',/* 是否推荐 */
  57. 'list game welfare' => 'welfare',/* 是否公益 */
  58. 'list game create time' => 'create time',/* 创建时间 */
  59. 'list game status' => 'status',/* 状态 */
  60. 'list game action' => 'action',/* 操作 */
  61. 'list game edit' => 'edit',/* 修改 */
  62. 'param lost' => 'param lost',/* 参数不全 */
  63. 'offline success' => 'offline success',/* 下线成功 */
  64. 'online success' => 'online success',/* 上线成功 */
  65. 'set hot success' => 'set hot success',/* 设置热门成功 */
  66. 'off hot success' => 'off hot success',/* 取消热门成功 */
  67. 'set recommend success' => 'set recommend success',/* 推荐成功 */
  68. 'off recommend success' => 'off recommend success',/* 取消推荐成功 */
  69. 'offline fail' => 'offline fail',/* 下线失败 */
  70. 'online fail' => 'online fail',/* 上线失败 */
  71. 'set hot fail' => 'set hot fail',/* 设置热门失败 */
  72. 'off hot fail' => 'off hot fail',/* 取消热门失败 */
  73. 'set recommend fail' => 'set recommend fail',/* 设置推荐失败 */
  74. 'off recommend fail' => 'off recommend fail',/* 取消推荐失败 */
  75. ];
  76. $_re = [];
  77. foreach ($_return_arr as $k => $v) {
  78. $_re[$_namespaces.' '.$k] = $v;
  79. }
  80. return $_re;