Translate remaining Chinese JSDoc and CSS comments to English
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -227,7 +227,7 @@ export const useConformanceStore = defineStore('conformanceStore', {
|
||||
},
|
||||
/**
|
||||
* Creates a new temporary check for a log.
|
||||
* @param {object} data 送給後端的 data
|
||||
* @param {object} data - The request payload for the backend.
|
||||
*/
|
||||
async addConformanceCheckId(data) {
|
||||
const logId = this.conformanceLogId;
|
||||
@@ -256,7 +256,7 @@ export const useConformanceStore = defineStore('conformanceStore', {
|
||||
},
|
||||
/**
|
||||
* Get the Temporary Log Conformance Report
|
||||
* @param {boolean} getRouteFile 是否為了取得 route file 而呼叫?使用在非 Conformance page
|
||||
* @param {boolean} getRouteFile - Whether called to get the route file (used outside the Conformance page).
|
||||
*/
|
||||
async getConformanceReport(getRouteFile = false) {
|
||||
const logTempCheckId = this.conformanceLogTempCheckId;
|
||||
@@ -291,7 +291,7 @@ export const useConformanceStore = defineStore('conformanceStore', {
|
||||
},
|
||||
/**
|
||||
* Get the detail of a temporary log conformance issue.
|
||||
* @param {number} issueNo Issues 編號
|
||||
* @param {number} issueNo - The issue number.
|
||||
*/
|
||||
async getConformanceIssue(issueNo) {
|
||||
const logTempCheckId = this.conformanceLogTempCheckId;
|
||||
@@ -323,9 +323,9 @@ export const useConformanceStore = defineStore('conformanceStore', {
|
||||
},
|
||||
/**
|
||||
* Get the Trace Details of a Temporary Log Conformance lssue.
|
||||
* @param {number} issueNo Issues 編號
|
||||
* @param {number} traceId, Trace 編號
|
||||
* @param {number} start Trace 要從哪個編號開始載入
|
||||
* @param {number} issueNo - The issue number.
|
||||
* @param {number} traceId - The trace ID.
|
||||
* @param {number} start - The starting index for loading traces.
|
||||
*/
|
||||
async getConformanceTraceDetail(issueNo, traceId, start) {
|
||||
const logTempCheckId = this.conformanceLogTempCheckId;
|
||||
@@ -363,7 +363,7 @@ export const useConformanceStore = defineStore('conformanceStore', {
|
||||
},
|
||||
/**
|
||||
* Get the Details of a Temporary Log Conformance Loop.
|
||||
* @param {number} loopNo loop 編號
|
||||
* @param {number} loopNo - The loop number.
|
||||
*/
|
||||
async getConformanceLoop(loopNo) {
|
||||
const logTempCheckId = this.conformanceLogTempCheckId;
|
||||
@@ -387,9 +387,9 @@ export const useConformanceStore = defineStore('conformanceStore', {
|
||||
},
|
||||
/**
|
||||
* Get the Trace Details of a Temporary Log Conformance Loops.
|
||||
* @param {number} loopNo loop 編號
|
||||
* @param {number} traceId, Trace 編號
|
||||
* @param {number} start Trace 要從哪個編號開始載入
|
||||
* @param {number} loopNo - The loop number.
|
||||
* @param {number} traceId - The trace ID.
|
||||
* @param {number} start - The starting index for loading traces.
|
||||
*/
|
||||
async getConformanceLoopsTraceDetail(loopNo, traceId, start) {
|
||||
const logTempCheckId = this.conformanceLogTempCheckId;
|
||||
|
||||
Reference in New Issue
Block a user