mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
Add translation key and remove unused plugin
This commit is contained in:
parent
e340be512c
commit
20d8cc2d17
@ -31,7 +31,6 @@ containers.forEach((container) => {
|
||||
}
|
||||
})
|
||||
.use(i18n)
|
||||
.use(TranslatorPlugin)
|
||||
.component('app', App)
|
||||
.mount(container);
|
||||
|
||||
|
@ -38,7 +38,7 @@
|
||||
</span>
|
||||
</template>
|
||||
</div>
|
||||
<span v-if="w.isOnHoldAtCurrentStep" class="badge bg-success rounded-pill">{{ $t('on_hold') }}</span>
|
||||
<span v-if="w.isOnHoldAtCurrentStep" class="badge bg-success rounded-pill">{{ trans(WORKFLOW_ON_HOLD) }}</span>
|
||||
</div>
|
||||
|
||||
<div class="item-row">
|
||||
@ -68,7 +68,7 @@
|
||||
<script setup>
|
||||
import Popover from 'bootstrap/js/src/popover';
|
||||
import { onMounted } from 'vue';
|
||||
import { trans, SEE, BY_USER, WORKFLOW_AT, WORKFLOW_YOU_SUBSCRIBED_TO_ALL_STEPS, WORKFLOW_YOU_SUBSCRIBED_TO_FINAL_STEP } from '../../../../../../../../../../../assets/translator'
|
||||
import { trans, SEE, BY_USER, WORKFLOW_AT, WORKFLOW_YOU_SUBSCRIBED_TO_ALL_STEPS, WORKFLOW_YOU_SUBSCRIBED_TO_FINAL_STEP, WORKFLOW_ON_HOLD } from '../../../../../../../../../../../assets/translator'
|
||||
|
||||
// props
|
||||
const props = defineProps({
|
||||
|
Loading…
x
Reference in New Issue
Block a user