对搜索返回的消息做中英双版本

This commit is contained in:
2026-04-28 15:22:50 +08:00
parent 85133ee92b
commit 9bc439ea5e
32 changed files with 575 additions and 183 deletions

View File

@@ -63,17 +63,17 @@ class AdminWalletRecord extends Backend
protected function _add(): Response
{
return $this->error('管理员钱包流水不允许手动新增');
return $this->error(__('Admin wallet records do not allow manual creation'));
}
protected function _edit(): Response
{
return $this->error('管理员钱包流水不允许手动编辑');
return $this->error(__('Admin wallet records do not allow manual editing'));
}
protected function _del(): Response
{
return $this->error('管理员钱包流水不允许删除');
return $this->error(__('Admin wallet records do not allow deletion'));
}
}