Skip to content

Commit

Permalink
add missing translation in data table filters
Browse files Browse the repository at this point in the history
  • Loading branch information
Haberkamp committed Nov 4, 2024
1 parent f1399f4 commit 0280b80
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/nervous-countries-cry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@shopware-ag/meteor-component-library": patch
---

Add missing translation for data table filters
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
{{ filter.label }}
</mt-text>

<mt-text size="2xs" color="color-text-secondary-default" class="mt-data-table-filter__rule"
>is</mt-text
>
<mt-text size="2xs" color="color-text-secondary-default" class="mt-data-table-filter__rule">
{{ t("is") }}
</mt-text>

<mt-popover class="mt-data-table-filter__option" title="Manufactuer">
<template #trigger="{ toggleFloatingUi }">
Expand Down Expand Up @@ -69,9 +69,11 @@ function isOptionSelected(optionId: string) {
const { t } = useI18n({
messages: {
en: {
is: "is",
removeButton: "Remove filter",
},
de: {
is: "ist",
removeButton: "Filter entfernen",
},
},
Expand Down

0 comments on commit 0280b80

Please sign in to comment.