add builder i18n

This commit is contained in:
Pete Matsyburka
2024-01-04 01:05:36 +02:00
parent 6f1e104067
commit 2124965996
12 changed files with 146 additions and 68 deletions
+4 -4
View File
@@ -15,13 +15,13 @@
width="20"
/>
<span v-if="isLoading">
Uploading...
{{ t('uploading_') }}
</span>
<span v-else-if="isProcessing">
Processing...
{{ t('processing_') }}
</span>
<span v-else>
Add Document
{{ t('add_document') }}
</span>
</label>
<form
@@ -50,7 +50,7 @@ export default {
IconUpload,
IconInnerShadowTop
},
inject: ['baseFetch'],
inject: ['baseFetch', 't'],
props: {
templateId: {
type: [Number, String],