From acf3e450aeb784c7a048eb214ecd89cd8ed20760 Mon Sep 17 00:00:00 2001 From: Manato Date: Fri, 31 Mar 2023 19:11:06 +0900 Subject: [PATCH] chore(i18n): update Japanese translation for commit messages (#98) Updated the Japanese translation for commit messages to reflect the changes made in the previous commit. The commitFix message now correctly states that the port variable was changed from lowercase 'port' to uppercase 'PORT'. The commitFeat message now correctly states that support for the 'process.env.PORT' environment variable was added. The commitDescription message explains that the use of the constant 'PORT' for the port variable provides consistency in naming conventions, and that the support for the 'process.env.PORT' environment variable allows the application to be more flexible and run on any available port specified by the environment variable. --- src/i18n/ja.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/i18n/ja.json b/src/i18n/ja.json index 9d529be..6845b68 100644 --- a/src/i18n/ja.json +++ b/src/i18n/ja.json @@ -1,6 +1,6 @@ { - "localLanguage": "にほんご", - "commitFix": "修正(server.ts): ポート変数のケースを小文字のポートから大文字のPORTに変更", - "commitFeat": "新機能(server.ts): process.env.PORT環境変数のサポートを追加する", - "commitDescription": "ポート変数は現在PORTという名前になっており、PORTは定数であるため命名規則に一貫性があります。環境変数のサポートにより、アプリケーションはより柔軟になり、process.env.PORT環境変数で指定された任意の利用可能なポートで実行できるようになりまし" + "localLanguage": "日本語", + "commitFix": "修正(server.ts): ポート変数を小文字のportから大文字のPORTに変更", + "commitFeat": "新機能(server.ts): 環境変数process.env.PORTのサポートを追加", + "commitDescription": "ポート変数は現在PORTという名前になり、定数であるPORTを使うことで命名規則に一貫性が生まれました。環境変数をサポートすることで、環境変数process.env.PORTで指定された任意の利用可能なポートで実行できるようになり、アプリケーションはより柔軟になりました。" }