31 lines
1023 B
PHP
31 lines
1023 B
PHP
<?php
|
|
/**
|
|
* rma.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author TL <mengwb@guangda.work>
|
|
* @created 2022-08-16 17:22:41
|
|
* @modified 2022-08-16 17:22:41
|
|
*/
|
|
|
|
return [
|
|
'index' => 'Applicazione post-vendita',
|
|
|
|
'rmas_index' => 'Elenco servizi post-vendita',
|
|
'rmas_show' => 'Dettagli servizio post-vendita',
|
|
'rmas_update' => 'Aggiorna servizio post-vendita',
|
|
'rmas_delete' => 'Elimina servizio post-vendita',
|
|
|
|
'customers_name' => 'nome cliente',
|
|
'quantity' => 'quantità',
|
|
'service_type' => 'tipo di servizio',
|
|
'rma_details' => 'Dettagli dell\'applicazione post-vendita',
|
|
'reasons_return' => 'Motivo del reso',
|
|
'current_state' => 'stato corrente',
|
|
'modify_status' => 'modifica stato',
|
|
'remarks' => 'osservazioni',
|
|
'update_status' => 'stato di aggiornamento',
|
|
'operation_history' => 'storia_operazione',
|
|
];
|