translated all loading…

This commit is contained in:
2021-06-01 22:46:15 +02:00
parent 16f2d98f15
commit efc74ec5f4
29 changed files with 24 additions and 24 deletions

View File

@ -59,7 +59,7 @@ export default {
// console.log('LoginBlock render')
if (!this.template) {
// console.log('LoginBlock render NAN')
return h('span', 'Loading ...')
return h('span', this.$t('default.Loading…'))
} else {
// console.log('LoginBlock render template')
return this.template.render.call(this)

View File

@ -60,7 +60,7 @@ export default {
render(h) {
// console.log('headerMenu render')
if (!this.template) {
return h('span', 'Loading ...')
return h('span', $t('default.Loading…'))
} else {
return this.template.render.call(this)
}

View File

@ -62,7 +62,7 @@ export default {
// console.log('LoginBlock render')
if (!this.form) {
// console.log('LoginBlock render NAN')
return h('span', 'Loading ...')
return h('span', this.$t('default.Loading…'))
} else {
// console.log('LoginBlock render template')
return this.form.render.call(this)

View File

@ -98,7 +98,7 @@ export default {
// console.log('LoginBlock render')
if (!this.form) {
// console.log('LoginBlock render NAN')
return h('span', 'Loading ...')
return h('span', this.$t('default.Loading…'))
} else {
// console.log('LoginBlock render template')
return this.form.render.call(this)

View File

@ -155,7 +155,7 @@ export default {
render(h) {
// console.log('searchForm render')
if (!this.template) {
return h('span', 'Loading ...')
return h('span', $t('default.Loading…'))
} else {
return this.template.render.call(this)
}

View File

@ -1,6 +1,6 @@
<template>
<div class="loading" v-if="!article || loading">
<span>Loading ...</span>
<span>{{ $t('default.Loading…') }}</span>
</div>
<article class="article" v-else>
<nav class="prevnext top">

View File

@ -1,14 +1,14 @@
<template>
<div id="Base">
<div class="loading" v-if="!searchinfos">
<span>Loading ...</span>
<span>{{ $t('default.Loading…') }}</span>
</div>
<div class="cards-list" v-else>
<aside class="search-info">
{{ searchinfos }}
</aside>
<div class="loading" v-if="!items.length & !noresults">
<span>Loading ...</span>
<span>{{ $t('default.Loading…') }}</span>
</div>
<ul v-else>
<li v-for="item in items" v-bind:key="item.id">

View File

@ -1,7 +1,7 @@
<template>
<div id="blabla">
<div class="loading" v-if="!items.length">
<span>Loading ...</span>
<span>{{ $t('default.Loading…') }}</span>
</div>
<div class="cards-list" v-else>
<ul>

View File

@ -26,7 +26,7 @@ export default {
},
render(h) {
if (!this.template) {
return h('span', 'Loading ...')
return h('span', this.$t('default.Loading…'))
} else {
return this.template.render.call(this)
}

View File

@ -1,7 +1,7 @@
<template>
<div id="pricing">
<div class="loading" v-if="!products.length">
<span>Loading ...</span>
<span>{{ $t('default.Loading…') }}</span>
</div>
<Product
v-else

View File

@ -1,7 +1,7 @@
<template>
<div id="showrooms">
<div class="loading" v-if="!items.length">
<span>Loading ...</span>
<span>{{ $t('default.Loading…') }}</span>
</div>
<Showroom
v-else

View File

@ -1,6 +1,6 @@
<template>
<div class="loading" v-if="!thematique || loading">
<span>Loading ...</span>
<span>{{ $t('default.Loading…') }}</span>
</div>
<article class="thematique" v-else>
<div class="cols">

View File

@ -22,7 +22,7 @@ export default {
},
render(h) {
if (!this.template) {
return h('span', 'Loading ...')
return h('span', $t('default.Loading…'))
} else {
return this.template.render.call(this)
}

View File

@ -17,7 +17,7 @@
</li>
<span v-if="loadedItems.length === 0">No items in your folder</span>
</ul>
<span v-else class="loading">Loading</span>
<span v-else class="loading">{{ $t('default.Loading…') }}</span>
</section>
</template>