We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4960428 commit 9bb7c09Copy full SHA for 9bb7c09
js/Components/TableReset.vue
@@ -19,12 +19,15 @@
19
clip-rule="evenodd"
20
/>
21
</svg>
22
- <span>Reset</span>
+ <span>{{ translations.reset ?? 'Reset' }}</span>
23
</button>
24
</template>
25
26
<script setup>
27
import {inject} from "vue";
28
+import { getTranslations } from "../translations.js";
29
+
30
+const translations = getTranslations();
31
32
defineProps({
33
onClick: {
js/translations.js
@@ -6,7 +6,8 @@ const translationsObject = {
6
per_page: "per page",
7
previous: "Previous",
8
results: "results",
9
- to: "to"
+ to: "to",
10
+ reset: "Reset",
11
}
12
};
13
0 commit comments