summaryrefslogtreecommitdiffstats
path: root/client/components/cards/cardDate.js
diff options
context:
space:
mode:
authorshoetten <simon@hoetten.org>2016-02-10 15:51:55 +0100
committershoetten <simon@hoetten.org>2016-11-22 21:28:46 +0100
commitaa5ed6e48466b2ed3dc83696a6e18d7997b1c01e (patch)
treee728392ec196653b9690b596ecb7ae56a340da08 /client/components/cards/cardDate.js
parent5dd554b99960ebd3ac599fa5afc52838c8b7155f (diff)
downloadwekan-aa5ed6e48466b2ed3dc83696a6e18d7997b1c01e.tar.gz
wekan-aa5ed6e48466b2ed3dc83696a6e18d7997b1c01e.tar.bz2
wekan-aa5ed6e48466b2ed3dc83696a6e18d7997b1c01e.zip
Update translations and title of date badges.
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'),