fix bug, change statment from transaction infbox

This commit is contained in:
ogerly 2021-08-10 13:54:02 +02:00
parent 4d2eb5b216
commit 55b020e3ac
3 changed files with 16 additions and 6 deletions

View File

@ -36,7 +36,8 @@
"received":"empfangen",
"sent":"gesendet",
"created":"geschöpft",
"fromCommunity":"Aus der Community"
"fromCommunity":"Aus der Community",
"toCommunity":"An die Community"
},
"form": {
"cancel": "Abbrechen",

View File

@ -36,7 +36,8 @@
"received":"received",
"sent":"sent",
"created":"reated",
"fromCommunity":"From the community"
"fromCommunity":"From the community",
"toCommunity":"To the community"
},
"form": {
"cancel":"Cancel",

View File

@ -55,11 +55,19 @@
<!-- ROW End -->
<!-- Collaps Start -->
<b-collapse v-if="type != 'decay'" :id="'a' + date + ''">
<b-list-group v-if="type === 'creation'">
<b-list-group-item style="border: 0px">
<b-list-group>
<b-list-group-item style="border: 0px; background-color: #f1f1f1">
<div class="d-flex">
<div style="width: 40%" class="text-right pr-3 mr-2">{{ $t('decay.created') }}</div>
<div style="width: 60%">{{ $t('decay.fromCommunity') }}</div>
<div style="width: 40%" class="text-right pr-3 mr-2">
<div v-if="type === 'send'">{{ $t('decay.sent') }}</div>
<div v-if="type === 'creation'">{{ $t('decay.created') }}</div>
<div v-if="type === 'receive'">{{ $t('decay.received') }}</div>
</div>
<div style="width: 60%">
<div v-if="type === 'send'">{{ $t('decay.toCommunity') }}</div>
<div v-if="type === 'creation'">{{ $t('decay.fromCommunity') }}</div>
<div v-if="type === 'receive'">{{ $t('decay.fromCommunity') }}</div>
</div>
</div>
</b-list-group-item>
</b-list-group>