Skip to content

Commit bf49496

Browse files
committed
add hold_on_while_loading_boxes
1 parent 6b58f0c commit bf49496

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

frontend/src/components/ProgressCard.vue

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@
1414
<div v-else-if="progressPercentage === 100">
1515
{{ t('finished_in', { t: convertSeconds(finishedTime) }) }}
1616
</div>
17-
<div v-else-if="!$leadminerStore.isLoadingBoxes">
17+
<div v-else-if="$leadminerStore.isLoadingBoxes">
18+
{{ t('hold_on_while_loading_boxes') }}
19+
</div>
20+
<div v-else>
1821
{{ t('estimated_time', { t: estimatedRemainingTimeConverted }) }}
1922
</div>
2023
</slot>
@@ -162,12 +165,14 @@ onMounted(() => {
162165
"en": {
163166
"finished_in": "Finished in {t}",
164167
"estimated_time": "The contact mining may take around {t}",
165-
"remaining_time": "{t} remaining"
168+
"remaining_time": "{t} remaining",
169+
"hold_on_while_loading_boxes": "Please hold on while we are retrieving mailboxes..."
166170
},
167171
"fr": {
168172
"finished_in": "Terminé en {t}",
169173
"estimated_time": "L'extraction de contacts peut prendre environ {t}",
170-
"remaining_time": "{t} restantes"
174+
"remaining_time": "{t} restantes",
175+
"hold_on_while_loading_boxes": "Veuillez patienter pendant que nous récupérons les boîtes aux lettres..."
171176
}
172177
}
173178
</i18n>

0 commit comments

Comments
 (0)