Skip to content

Commit

Permalink
chore: update language
Browse files Browse the repository at this point in the history
Signed-off-by: yuda <[email protected]>
  • Loading branch information
yuda110 committed Dec 19, 2024
1 parent a82dd78 commit 3cc0828
Show file tree
Hide file tree
Showing 5 changed files with 391 additions and 103 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ const state = reactive({
fieldTypeMenuItems: computed<MenuItem[]>(() => [
{
name: DATA_TABLE_FIELD_TYPE.LABEL,
label: i18n.t('COMMON.WIDGETS.DATA_TABLE.FORM.EVAL.TYPE_LABEL_FIELD'),
label: i18n.t('COMMON.WIDGETS.DATA_TABLE.FORM.TYPE_LABEL_FIELD'),
},
{
name: DATA_TABLE_FIELD_TYPE.DATA,
label: i18n.t('COMMON.WIDGETS.DATA_TABLE.FORM.EVAL.TYPE_DATA_FIELD'),
label: i18n.t('COMMON.WIDGETS.DATA_TABLE.FORM.TYPE_DATA_FIELD'),
},
]),
globalVariablePopperVisible: false,
Expand Down Expand Up @@ -196,7 +196,7 @@ watch(() => state.invalid, (_invalid) => {
/>
</div>
<div class="form-body">
<p-field-group :label="$t('COMMON.WIDGETS.DATA_TABLE.FORM.EVAL.FIELD_TYPE')"
<p-field-group :label="$t('COMMON.WIDGETS.DATA_TABLE.FORM.FIELD_TYPE')"
required
style-type="secondary"
>
Expand All @@ -212,7 +212,7 @@ watch(() => state.invalid, (_invalid) => {
</p-select-button>
</div>
</p-field-group>
<p-field-group :label="$t('COMMON.WIDGETS.DATA_TABLE.FORM.EVAL.FIELD_NAME')"
<p-field-group :label="$t('COMMON.WIDGETS.DATA_TABLE.FORM.FIELD_NAME')"
required
style-type="secondary"
:invalid-text="getInvalidFieldNameText(expression.name)"
Expand Down
Loading

0 comments on commit 3cc0828

Please sign in to comment.