summaryrefslogtreecommitdiffstats
path: root/client/components/cards/cardDate.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/components/cards/cardDate.js')
-rw-r--r--client/components/cards/cardDate.js12
1 files changed, 8 insertions, 4 deletions
diff --git a/client/components/cards/cardDate.js b/client/components/cards/cardDate.js
index 6bdfaa1b..10bc54ff 100644
--- a/client/components/cards/cardDate.js
+++ b/client/components/cards/cardDate.js
@@ -148,10 +148,6 @@ const CardDate = BlazeComponent.extendComponent({
});
},
- showTitle() {
- return this.date.get().format('LLLL');
- },
-
showISODate() {
return this.date.get().toISOString();
},
@@ -173,6 +169,10 @@ class CardStartDate extends CardDate {
}
}
+ showTitle() {
+ return TAPi18n.__('card-start-on') + ' ' + this.date.get().format('LLLL');
+ }
+
events() {
return super.events().concat({
'click .js-edit-date': Popup.open('editCardStartDate'),
@@ -199,6 +199,10 @@ class CardDueDate extends CardDate {
return 'almost-due';
}
+ showTitle() {
+ return TAPi18n.__('card-due-on') + ' ' + this.date.get().format('LLLL');
+ }
+
events() {
return super.events().concat({
'click .js-edit-date': Popup.open('editCardDueDate'),