This commit is contained in:
2020-07-07 18:17:05 +00:00
parent 5f179ec926
commit a180c450bd
2 changed files with 8 additions and 4 deletions

View File

@@ -150,6 +150,9 @@ export default {
"Close",
"Save",
"Delete",
"Add",
"Replace",
"Remove",
"OK",
"Open",
"Print",
@@ -196,6 +199,7 @@ export default {
"AreYouSureUnsavedChanges",
"Leave",
"Tags",
"Tag",
"Customize",
"ObjectCustomFieldCustomGrid",
"RowsPerPage",

View File

@@ -3,15 +3,15 @@
<v-expansion-panel-header>{{ $ay.t("Tags") }}</v-expansion-panel-header>
<v-expansion-panel-content>
<v-radio-group v-model="action">
<v-radio label="Add" value="Add"></v-radio>
<v-radio label="Remove" value="Remove"></v-radio>
<v-radio label="Replace" value="Replace"></v-radio>
<v-radio :label="$ay.t('Add')" value="Add"></v-radio>
<v-radio :label="$ay.t('Remove')" value="Remove"></v-radio>
<v-radio :label="$ay.t('Replace')" value="Replace"></v-radio>
</v-radio-group>
<v-row>
<v-col cols="12">
<v-text-field
:value="tag"
:label="$ay.t('Find')"
:label="$ay.t('Tag')"
required
@input="normalizeTag"
></v-text-field>