Shun Miyazawa 5 лет назад
Родитель
Сommit
1a3783b8bc

+ 1 - 1
resource/locales/en_US/admin/admin.json

@@ -299,7 +299,7 @@
       "how_to_create_a_bot": "How to create a bot"
     },
     "custom_bot_without_proxy_integration": "Custom bot without proxy integration",
-    "without_proxy_integration": {
+    "integration_sentence": {
       "integration_is_not_complete": "Integration is not complete.",
       "proceed_with_the_following_integration_procedure": "Proceed with the following integration procedure."
     }

+ 1 - 1
resource/locales/ja_JP/admin/admin.json

@@ -297,7 +297,7 @@
       "how_to_create_a_bot": "作成方法はこちら"
     },
     "custom_bot_without_proxy_integration": "Custom bot without proxy 連携",
-    "without_proxy_integration": {
+    "integration_sentence": {
       "integration_is_not_complete": "連携は完了していません。",
       "proceed_with_the_following_integration_procedure": "下記の連携手順を進めてください。"
     }

+ 1 - 1
resource/locales/zh_CN/admin/admin.json

@@ -307,7 +307,7 @@
       "how_to_create_a_bot": "如何创建一个BOT"
     },
     "custom_bot_without_proxy_integration": "Custom bot without proxy 一体化",
-    "without_proxy_integration": {
+    "integration_sentence": {
       "integration_is_not_complete": "一体化未完成。",
       "proceed_with_the_following_integration_procedure": "进行以下一体化程序。"
     }

+ 2 - 2
src/client/js/components/Admin/SlackIntegration/CustomBotWithoutProxySettings.jsx

@@ -95,8 +95,8 @@ const CustomBotWithoutProxySettings = (props) => {
         </div>
 
         <div className="text-center w-25 mt-5">
-          <p className="text-secondary m-0"><small>{t('admin:slack_integration.without_proxy_integration.integration_is_not_complete')}</small></p>
-          <p className="text-secondary"><small>{t('admin:slack_integration.without_proxy_integration.proceed_with_the_following_integration_procedure')}</small></p>
+          <p className="text-secondary m-0"><small>{t('admin:slack_integration.integration_sentence.integration_is_not_complete')}</small></p>
+          <p className="text-secondary"><small>{t('admin:slack_integration.integration_sentence.proceed_with_the_following_integration_procedure')}</small></p>
           <hr className="border-danger align-self-center" style={{ border: 'dashed' }}></hr>
         </div>