Merge pull request #3386 from dimitrov-adrian/translate-search-items

Add search items to be translated
This commit is contained in:
Rijk van Zanten
2020-12-11 09:37:01 -05:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -295,6 +295,7 @@ no_comments: No Comments Yet
click_to_expand: Click to Expand
select_item: Select Item
no_items: No items
search_items: Search items...
disabled: Disabled
information: Information
report_bug: Report Bug

View File

@@ -7,7 +7,7 @@
v-tooltip.bottom="active ? null : $t('search')"
>
<v-icon name="search" />
<input ref="input" :value="value" @input="emitValue" placeholder="Search items..." />
<input ref="input" :value="value" @input="emitValue" :placeholder="$t('search_items')" />
<v-icon v-if="value" class="empty" name="close" @click.stop="emptyAndClose" />
</div>
</template>