Fix bad day unit label in readonly duration

This commit is contained in:
Nathan Gray 2016-05-04 17:59:58 +00:00
parent 3c5207cd7b
commit 00d668f6d5

View File

@ -698,7 +698,7 @@ var et2_date_duration = (function(){ "use strict"; return et2_date.extend(
// Get translations
this.time_formats = {
"d": this.options.short_labels ? this.egw().lang("m") : this.egw().lang("Days"),
"d": this.options.short_labels ? this.egw().lang("d") : this.egw().lang("Days"),
"h": this.options.short_labels ? this.egw().lang("h") : this.egw().lang("Hours"),
"m": this.options.short_labels ? this.egw().lang("m") : this.egw().lang("Minutes")
},