fix: ipd访问时lang错误

This commit is contained in:
2025-06-27 17:10:57 +08:00
parent 0c0f6ef5c7
commit 5e07e733c5
2 changed files with 2 additions and 1 deletions

View File

@@ -19,7 +19,7 @@ return [
// 扩展语言包
'extend_list' => [
'en-us' => [
app()->getAppPath() . '/lang/en-us/' . (request()->isMobile() ? 'mobile' : 'pc') . '.php',
app()->getAppPath() . '/lang/en-us/' . get_platform() . '.php',
app()->getAppPath() . '/lang/en-us/validate.php',
],
],

View File

@@ -1,6 +1,7 @@
<?php
return [
'首页' => 'Home',
'产品列表' => 'Products',
'店铺' => 'Store',
'搜索记录' => 'Search History',