123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?php
- /**
- * game_app.php UTF-8
- *
- *
- * @date : 2017/11/28 17:53
- *
- * @license 这不是一个自由软件,未经授权不许任何使用和传播。
- * @author : guxiannong <gxn@huosdk.com>
- * @version : HUOSDK 8.0
- */
- $_namespaces = 'game app';
- $_return_arr = [
- 'default choice' => 'all',/* 默认选择 */
- 'choose the state' => 'choose state',/* 选择状态 */
- 'choose a game' => 'choose game',/* 选择游戏 */
- 'all tags' => 'all tags',/* 选择游戏 */
- 'game tags' => 'game tags',/* 游戏标签 */
- 'current status' => 'current status',/* 当前状态 */
- 'game name' => 'game name',/* 游戏名称 */
- 'game platform' => 'platform',/* 游戏平台 */
- 'choose a platform' => 'choose platform',/* 选择平台 */
- 'select the time interval' => 'select time interval',/* 创建时间 */
- 'start time' => 'start time',/* 开始时间 */
- 'end time' => 'end time',/* 结束时间 */
- 'game management' => 'game management',/* app游戏管理标题 */
- 'search button' => 'search',/* 搜索按钮 */
- 'sort button' => 'sort',/* 排序按钮 */
- 'online msg' => 'sure to online',/* 上线提示 */
- 'offline msg' => 'sure to offline',/* 下线提示 */
- 'set online' => 'online',/* 上线 */
- 'set offline' => 'offline',/* 下线 */
- 'set hot msg' => 'sure set hot',/* 设置热门 */
- 'off hot msg' => 'sure off hot',/* 取消热门 */
- 'set hot' => 'set hot',/* 设置热门 */
- 'off hot' => 'off hot',/* 取消热门 */
- 'set free msg' => 'sure free',/* 设置公益 */
- 'off free msg' => 'sure off free',/* 取消公益 */
- 'set free' => 'set free',/* 设置公益 */
- 'off free' => 'off free',/* 取消公益 */
- 'set new msg' => 'sure set new',/* 设置新游 */
- 'off new msg' => 'sure off new',/* 取消新游 */
- 'set new' => 'set new',/* 设置新游 */
- 'off new' => 'off new',/* 取消新游 */
- 'set recommend' => 'set recommend',/* 设置推荐 */
- 'off recommend' => 'off recommend',/* 取消推荐 */
- 'set recommend msg' => 'sure recommend',/* 确定设置推荐 */
- 'off recommend msg' => 'sure off recommend',/* 确定取消推荐 */
- 'list sort show' => 'sort',/* 列表排序 */
- 'list game name show' => 'game name(icon)',/* 列表游戏名和图标 */
- 'list game tags show' => 'game tags',/* 列表游戏标签 */
- 'list game platform' => 'game platform',/* 列表游戏平台 */
- 'list game line type' => 'line type',/* 是否网游 */
- 'list game is hot' => 'is hot',/* 是否热门 */
- 'list game is new' => 'is new',/* 是否新游 */
- 'list game recommend' => 'recommend',/* 是否推荐 */
- 'list game welfare' => 'welfare',/* 是否公益 */
- 'list game create time' => 'create time',/* 创建时间 */
- 'list game status' => 'status',/* 状态 */
- 'list game action' => 'action',/* 操作 */
- 'list game edit' => 'edit',/* 修改 */
- 'param lost' => 'param lost',/* 参数不全 */
- 'offline success' => 'offline success',/* 下线成功 */
- 'online success' => 'online success',/* 上线成功 */
- 'set hot success' => 'set hot success',/* 设置热门成功 */
- 'off hot success' => 'off hot success',/* 取消热门成功 */
- 'set recommend success' => 'set recommend success',/* 推荐成功 */
- 'off recommend success' => 'off recommend success',/* 取消推荐成功 */
- 'offline fail' => 'offline fail',/* 下线失败 */
- 'online fail' => 'online fail',/* 上线失败 */
- 'set hot fail' => 'set hot fail',/* 设置热门失败 */
- 'off hot fail' => 'off hot fail',/* 取消热门失败 */
- 'set recommend fail' => 'set recommend fail',/* 设置推荐失败 */
- 'off recommend fail' => 'off recommend fail',/* 取消推荐失败 */
- ];
- $_re = [];
- foreach ($_return_arr as $k => $v) {
- $_re[$_namespaces.' '.$k] = $v;
- }
- return $_re;
|