From 10b031ab36a8bd2efbb972e0bb5fa140f2623919 Mon Sep 17 00:00:00 2001 From: XYCode Kerman Date: Tue, 13 Aug 2024 15:59:48 +0800 Subject: [PATCH] fix(i18n): zh_CN is wrong (#379) --- src/i18n/zh_CN.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/i18n/zh_CN.json b/src/i18n/zh_CN.json index 897ffc1..8a25af3 100644 --- a/src/i18n/zh_CN.json +++ b/src/i18n/zh_CN.json @@ -1,6 +1,6 @@ { "localLanguage": "简体中文", - "commitFix": "修复(server.ts):将端口变量从小写port改为大写PORT", - "commitFeat": "功能(server.ts):添加对process.env.PORT环境变量的支持", + "commitFix": "fix(server.ts):将端口变量从小写port改为大写PORT", + "commitFeat": "feat(server.ts):添加对process.env.PORT环境变量的支持", "commitDescription": "现在端口变量被命名为PORT,这提高了命名约定的一致性,因为PORT是一个常量。环境变量的支持使应用程序更加灵活,因为它现在可以通过process.env.PORT环境变量在任何可用端口上运行。" }