Browse Source

feat: blocks.debugMode.description locales

siykt 1 year ago
parent
commit
6a3a379360

+ 2 - 2
src/components/newtab/workflow/edit/BlockSetting/BlockSettingGeneral.vue

@@ -19,12 +19,12 @@
       <ui-list-item v-if="isDebugSupported" small class="mt-4">
         <div class="flex-1 overflow-hidden">
           <p class="text-overflow">
-            {{ t('workflow.settings.debugMode.title') }}
+            {{ t('workflow.blocks.debugMode.title') }}
           </p>
           <p
             class="text-overflow leading-tight text-gray-600 dark:text-gray-300"
           >
-            Execute block using the Chrome DevTools Protocol
+            {{ t('workflow.blocks.debugMode.description') }}
           </p>
         </div>
         <ui-switch v-model="state.debugMode" class="mr-4" />

+ 4 - 0
src/locales/en/blocks.json

@@ -795,6 +795,10 @@
           "main": "Main window",
           "iframe": "Iframe"
         }
+      },
+      "debugMode": {
+        "title": "Debug mode",
+        "description": "Execute block using the Chrome DevTools Protocol"
       }
     }
   }

+ 6 - 2
src/locales/fr/blocks.json

@@ -284,7 +284,7 @@
         "timeout": "Délai d'attente (millisecondes)",
         "activeTabLoaded": "Onglet actif",
         "setAsActiveTab": "Définir comme onglet actif"
-      },    
+      },
       "blocks-group": {
         "name": "Groupe de blocs",
         "groupName": "Nom du groupe",
@@ -771,7 +771,11 @@
           "main": "Fenêtre principale",
           "iframe": "Iframe"
         }
+      },
+      "debugMode": {
+        "title": "Modalità di debug",
+        "description": "Esegui il block usando il protocollo di Chrome DevTools"
       }
     }
   }
-}
+}

+ 3 - 0
src/locales/it/blocks.json

@@ -773,6 +773,9 @@
           "main": "Finestra principale",
           "iframe": "Iframe"
         }
+      },
+      "debugMode": {
+        "description": "Esegui il modulo corrente utilizzando il protocollo Chrome DevTools"
       }
     }
   }

+ 4 - 0
src/locales/uk/blocks.json

@@ -777,6 +777,10 @@
       },
       "execute-workflow": {
         "insertAllGlobalData": "Використовувати весь поточний робочий процес globalData"
+      },
+      "debugMode": {
+        "title": "Режим налагодження",
+        "description": "Виконати поточний Блоки за допомогою протоколу Chrome DevTools"
       }
     }
   }

+ 4 - 0
src/locales/vi/blocks.json

@@ -750,6 +750,10 @@
           "main": "Cửa sổ chính",
           "iframe": "Iframe"
         }
+      },
+      "debugMode": {
+        "title": "Chế độ kiểm tra sửa lỗi",
+        "description": "Sử dụng giao thức Chrome Devtools để chạy khối"
       }
     }
   }

+ 3 - 0
src/locales/zh-TW/blocks.json

@@ -288,6 +288,9 @@
       },
       "execute-workflow": {
         "insertAllGlobalData": "插入當前工作流的 GlobalData"
+      },
+      "debugMode": {
+        "description": "使用 Chrome DevTools 協定執行目前模組"
       }
     }
   }

+ 4 - 0
src/locales/zh/blocks.json

@@ -789,6 +789,10 @@
           "main": "主窗口",
           "iframe": "Iframe"
         }
+      },
+      "debugMode": {
+        "title": "调试模式",
+        "description": "使用 Chrome DevTools 协议执行当前模块"
       }
     }
   }