fix: ipd访问时lang错误

This commit is contained in:
2025-06-27 17:10:57 +08:00
parent bdd6a7ba34
commit 69e45a8044
2 changed files with 2 additions and 1 deletions

View File

@@ -19,7 +19,7 @@ return [
// 扩展语言包 // 扩展语言包
'extend_list' => [ 'extend_list' => [
'en-us' => [ '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', app()->getAppPath() . '/lang/en-us/validate.php',
], ],
], ],

View File

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