diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2026-02-11 10:23:18 +0100 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2026-02-11 10:23:18 +0100 |
| commit | ab374bddc697ed5edeeac670339ce02fe94d43d9 (patch) | |
| tree | f5a87d338c1c932edd2bf241fc90cef99c190602 | |
| parent | 296490989ce77dcabf28db3bc8966bd9fbcea2b1 (diff) | |
don't expose addTranslation(s) on vue chunk since it's already exposed through STUDIP.Gettextbiest-6243
| -rw-r--r-- | resources/assets/javascripts/chunks/vue.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/assets/javascripts/chunks/vue.js b/resources/assets/javascripts/chunks/vue.js index 4fdb08f..2896166 100644 --- a/resources/assets/javascripts/chunks/vue.js +++ b/resources/assets/javascripts/chunks/vue.js @@ -2,7 +2,7 @@ import { createApp as vueCreateApp, h } from 'vue'; import { createStore as vuexCreateStore } from 'vuex'; import { createPinia } from 'pinia'; import eventBus from '../lib/event-bus'; -import gettext, { addTranslation, addTranslations } from '../lib/gettext'; +import gettext from '../lib/gettext'; import PortalVue from 'portal-vue'; import BaseComponents from '../../../vue/base-components.js'; import BaseDirectives from "../../../vue/base-directives.js"; @@ -94,4 +94,4 @@ function registerGlobalDirectives(app) { } } -export { createApp, h, eventBus, store, pinia, httpClient, addTranslation, addTranslations }; +export { createApp, h, eventBus, store, pinia, httpClient }; |
