You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
667 B
32 lines
667 B
<?php
|
|
/*
|
|
* @Descripttion:
|
|
* @version:
|
|
* @Author: GuaPi
|
|
* @Date: 2021-07-29 10:40:46
|
|
* @LastEditors: GuaPi
|
|
* @LastEditTime: 2021-08-14 10:33:24
|
|
*/
|
|
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Administrator
|
|
* Date: 2020/7/29
|
|
* Time: 19:28
|
|
*/
|
|
return [
|
|
// labels是自定义标签翻译
|
|
'labels' => [
|
|
// 这个是页面 title 翻译
|
|
'UserAssets' => '用户资产',
|
|
'user-assets' => '用户资产'
|
|
],
|
|
// 表字段翻译
|
|
'fields' => [
|
|
'coin_name' => '币种名称',
|
|
'user_id' => '用户',
|
|
'usable_balance' => '可用余额',
|
|
'freeze_balance' => '冻结余额',
|
|
],
|
|
'options' => [],
|
|
];
|
|
|