30 lines
1015 B
PHP
30 lines
1015 B
PHP
<?php
|
|
|
|
return array(
|
|
'App\\' => 'App API',
|
|
'Admin\\' => 'Admin API',
|
|
'Platform\\' => 'Platform API',
|
|
'Task\\' => 'Task API',
|
|
'Hello {name}, Welcome to use PhalApi!' => 'Hello {name}, Welcome to use PhalApi!',
|
|
'user not exists' => 'user not exists',
|
|
|
|
'{service} free api can not repeat' => '{service} free api can not repeat',
|
|
'price can not be zero' => 'price can not be zero',
|
|
'order_status_0' => 'payment_pending',
|
|
'order_status_10' => 'payment_confirmed',
|
|
'order_status_20' => 'dispatched',
|
|
'order_status_30' => 'refunded',
|
|
'order_status_40' => 'canceled',
|
|
'mall_flow_status_0' => 'canceled',
|
|
'mall_flow_status_10' => 'new',
|
|
'mall_flow_status_20' => 'using',
|
|
'mall_flow_status_30' => 'completed',
|
|
'mall_flow_status_40' => 'expired_out',
|
|
'free' => 'Free',
|
|
'time_unit' => '',
|
|
'money_unit' => 'RMB',
|
|
'money_symbol' => '¥',
|
|
'api flow not enough' => 'api flow not enough',
|
|
'product not exists' => 'product not exists',
|
|
);
|