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.
34 lines
738 B
34 lines
738 B
<?php
|
|
/*
|
|
* @Descripttion:
|
|
* @version:
|
|
* @Author: GuaPi
|
|
* @Date: 2021-07-29 10:40:46
|
|
* @LastEditors: GuaPi
|
|
* @LastEditTime: 2021-08-14 10:17:26
|
|
*/
|
|
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Administrator
|
|
* Date: 2020/7/29
|
|
* Time: 19:46
|
|
*/
|
|
return [
|
|
// labels是自定义标签翻译
|
|
'labels' => [
|
|
// 这个是页面 title 翻译
|
|
'AssetDetails' => '划转记录',
|
|
'asset-details' => '划转记录'
|
|
],
|
|
// 表字段翻译
|
|
'fields' => [
|
|
'user_id' => 'UID',
|
|
'coin_name' => '币种名称',
|
|
'draw_out_direction' => '划出地址',
|
|
'into_direction' => '划转方向',
|
|
'amount' => '数量',
|
|
'status' => '划转状态',
|
|
],
|
|
'options' => [],
|
|
];
|
|
|