Skip to content

Commit

Permalink
Merge pull request #120 from david-loe/david-loe/issue119
Browse files Browse the repository at this point in the history
Show date of last modification in Card
  • Loading branch information
david-loe authored Nov 14, 2024
2 parents 91a777d + fed98c8 commit 430600b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions common/locales/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@
"deleteApprovedTravelAfterXDaysUnused": "Um keine automatische Löschung durchzuführen 0 eingeben",
"deleteInWorkReportsAfterXDaysUnused": "Um keine automatische Löschung durchzuführen 0 eingeben",
"deleteRefundedAfterXDays": "Um keine automatische Löschung durchzuführen 0 eingeben",
"mailXDaysBeforeDeletion": "Um keine Hinweismail zu versenden 0 eingeben",
"keyFullIdentifier": "Der Schlüssel ist der komplette Identifier z.B.: {\"labels.new\": \"NEU\"}"
"keyFullIdentifier": "Der Schlüssel ist der komplette Identifier z.B.: {\"labels.new\": \"NEU\"}",
"mailXDaysBeforeDeletion": "Um keine Hinweismail zu versenden 0 eingeben"
},
"distanceRefundTypes": {
"car": "Auto 🚗",
Expand Down Expand Up @@ -242,6 +242,7 @@
"none": "gar nicht",
"note": "Bemerkung",
"object": "Objekt",
"on": "am",
"optional": "optional",
"organisation": "Organisation",
"organisations": "Organisationen",
Expand Down
5 changes: 3 additions & 2 deletions common/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@
"deleteApprovedTravelAfterXDaysUnused": "Enter 0 to prevent automatic deletion",
"deleteInWorkReportsAfterXDaysUnused": "Enter 0 to prevent automatic deletion",
"deleteRefundedAfterXDays": "Enter 0 to prevent automatic deletion",
"mailXDaysBeforeDeletion": "Enter 0 to prevent reminder email",
"keyFullIdentifier": "The key is the complete identifier, e.g: {\"labels.new\": \"NEW\"}"
"keyFullIdentifier": "The key is the complete identifier, e.g: {\"labels.new\": \"NEW\"}",
"mailXDaysBeforeDeletion": "Enter 0 to prevent reminder email"
},
"distanceRefundTypes": {
"car": "Car 🚗",
Expand Down Expand Up @@ -242,6 +242,7 @@
"none": "not at all",
"note": "Note",
"object": "Object",
"on": "on",
"optional": "optional",
"organisation": "Organisation",
"organisations": "Organisations",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/elements/CardElement.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<div v-if="showEditor" class="col-auto">
<small class="ms-1">
<i class="bi bi-pencil-square"></i>
{{ request.editor.name.givenName }}
{{ request.editor.name.givenName }} {{ $t('labels.on') }} {{ $formatter.simpleDate(request.updatedAt) }}
</small>
</div>
</div>
Expand Down

0 comments on commit 430600b

Please sign in to comment.