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

@@ -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)
}