Resolve "Finish handling of internationalization in vuejs: handling translation of "translatable string""

This commit is contained in:
2025-05-28 14:40:26 +00:00
committed by Julien Fastré
parent dc44c46667
commit 649ad26721
22 changed files with 118 additions and 464 deletions

View File

@@ -11,7 +11,7 @@
:value="s"
/>
<label class="form-check-label">
{{ s.name.fr }}
{{ localizeString(s.name) }}
</label>
</div>
</div>
@@ -24,6 +24,7 @@
<script>
import { mapState, mapGetters } from "vuex";
import { localizeString } from "ChillMainAssets/lib/localizationHelper/localizationHelper";
export default {
name: "Scopes",
@@ -48,6 +49,7 @@ export default {
},
},
methods: {
localizeString,
restore() {
console.log("restore");
},