chore: replace all cn comments of fe to en version by volc api (#320)

This commit is contained in:
tecvan
2025-07-31 10:32:15 +08:00
committed by GitHub
parent 716ec0cba8
commit 71f6245a01
2960 changed files with 15545 additions and 15545 deletions

View File

@@ -97,7 +97,7 @@ export const falseValue = {
[ConditionType.False]: () => I18n.t('workflow_detail_condition_select_false'),
};
// 等于、不等于、长度大于、长度大于等于、长度小于、长度小于等于、包含、不包含、为空、不为空
// equal to, not equal to, length greater than, length greater than or equal to, length less than, length less than or equal to, contain, do not contain, empty, not empty
export const stringConditionValueMap = merge(
{},
equalValue,
@@ -112,7 +112,7 @@ export const stringConditionValueMap = merge(
notEmptyValue,
);
// 等于、不等于、大于、大于等于、小于、小于等于、为空、不为空
// equal to, not equal to, greater than, greater than or equal to, less than, less than or equal to, empty, not empty
export const intConditionValueMap = merge(
{},
equalValue,
@@ -125,7 +125,7 @@ export const intConditionValueMap = merge(
smallerEqualValue,
);
// 等于、不等于、为True、为False、为空、不为空
// Equal to, not equal to, True, False, Null, Not Null
export const booleanConditionValueMap = merge(
{},
equalValue,
@@ -136,7 +136,7 @@ export const booleanConditionValueMap = merge(
falseValue,
);
// 等于、不等于、大于等于、小于等于、大于、小于、为空、不为空
// equal to, not equal to, greater than or equal to, less than or equal to, greater than, less than, empty, not empty
export const numberConditionValueMap = merge(
{},
equalValue,
@@ -149,7 +149,7 @@ export const numberConditionValueMap = merge(
notEmptyValue,
);
// 包含、不包含、为空、不为空
// Include, do not contain, empty, not empty
export const objectConditionValueMap = merge(
{},
includeKeyValue,
@@ -158,7 +158,7 @@ export const objectConditionValueMap = merge(
notEmptyValue,
);
// 长度大于、长度大于等于、长度小于、长度小于等于、包含、不包含、为空、不为空
// Length greater than, length greater than or equal to, length less than, length less than or equal to, contain, do not contain, empty, not empty
export const arrayConditionValueMap = merge(
{},
lengthBiggerValue,
@@ -171,7 +171,7 @@ export const arrayConditionValueMap = merge(
notEmptyValue,
);
// 所有的值的集合
// The set of all values
export const totalConditionValueMap = merge(
{},
equalValue,

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
/** 固定的 field name */
/** Fixed field name */
export enum FieldName {
Node = '_node',
Batch = '_batch',

View File

@@ -21,7 +21,7 @@ export {
} from './condition';
/**
* test form 相关常量
* Test form correlation constants
*/
export { FieldName } from './form';

View File

@@ -15,11 +15,11 @@
*/
/**
* testset 列表分页大小
* TestSet List Page Size
*/
export const TESTSET_PAGE_SIZE = 10;
/** test set connector ID 是一个固定的字符串 */
/** Test set connector ID is a fixed string */
export const TESTSET_CONNECTOR_ID = '10000';
export enum FormItemSchemaType {
@@ -41,7 +41,7 @@ export enum TestsetFormValuesForBoolSelect {
UNDEFINED = 'undefined',
}
/** 布尔类型选项 */
/** Boolean Type Options */
export const TESTSET_FORM_BOOLEAN_SELECT_OPTIONS = [
{
value: TestsetFormValuesForBoolSelect.TRUE,