多语言(英语、法语、西班牙语、德语、波兰语、阿拉伯语)处理

This commit is contained in:
2026-01-12 09:37:20 +08:00
parent 219caadd45
commit 41f0b72253
113 changed files with 3593 additions and 464 deletions

View File

@ -17,6 +17,21 @@
<when test="lang != null and lang=='en_US' ">
b.col_en col_name,
</when>
<when test="lang != null and lang=='fr_FR' ">
b.col_fra col_name,
</when>
<when test="lang != null and lang=='es_ES' ">
b.col_spa col_name,
</when>
<when test="lang != null and lang=='de_DE' ">
b.col_de col_name,
</when>
<when test="lang != null and lang=='pl_PL' ">
b.col_pl col_name,
</when>
<when test="lang != null and lang=='ar_EG' ">
b.col_ara col_name,
</when>
<otherwise>
a.col_name,
</otherwise>