mirror of
https://github.com/knadh/listmonk.git
synced 2025-11-08 08:41:34 +08:00
Fix strings on the UI missed in i18n translation. Closes #506.
This commit is contained in:
parent
823f11ef63
commit
a01759756e
1 changed files with 3 additions and 2 deletions
|
|
@ -2,7 +2,7 @@
|
|||
<section class="dashboard content">
|
||||
<header class="columns">
|
||||
<div class="column is-two-thirds">
|
||||
<h1 class="title is-5">{{ dayjs().format("ddd, DD MMM") }}</h1>
|
||||
<h1 class="title is-5">{{ $utils.niceDate(new Date()) }}</h1>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
|
@ -60,7 +60,8 @@
|
|||
<div class="column is-6">
|
||||
<ul class="no has-text-grey">
|
||||
<li v-for="(num, status) in counts.campaigns.byStatus" :key="status">
|
||||
<label>{{ num }}</label> {{ status }}
|
||||
<label>{{ num }}</label>
|
||||
{{ $t(`campaigns.status.${status}`) }}
|
||||
<span v-if="status === 'running'" class="spinner is-tiny">
|
||||
<b-loading :is-full-page="false" active />
|
||||
</span>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue