Remove untranslatable strings from locale file

// FREEBIE
This commit is contained in:
lilia 2016-08-05 13:41:23 -07:00
parent 6a3a724dc4
commit fed8f62617
2 changed files with 7 additions and 31 deletions

View file

@ -329,18 +329,6 @@
"description": "", "description": "",
"message": "%d hours" "message": "%d hours"
}, },
"timestampFormat_y" : {
"description": "",
"message": "MMM D, YYYY"
},
"timestampFormat_m" : {
"description": "",
"message": "MMM D"
},
"timestampFormat_d" : {
"description": "",
"message": "ddd"
},
"extendedTimestamp_s": { "extendedTimestamp_s": {
"description": "", "description": "",
"message": "now" "message": "now"
@ -360,17 +348,5 @@
"extendedTimestamp_hh": { "extendedTimestamp_hh": {
"description": "", "description": "",
"message": "%d hours ago" "message": "%d hours ago"
}, }
"extendedTimestampFormat_y" : {
"description": "",
"message": "MMM D, YYYY LT"
},
"extendedTimestampFormat_m" : {
"description": "",
"message": "MMM D LT"
},
"extendedTimestampFormat_d" : {
"description": "",
"message": "ddd LT"
}
} }

View file

@ -71,9 +71,9 @@
return i18n("timestamp_"+string).replace(/%d/i, number); return i18n("timestamp_"+string).replace(/%d/i, number);
}, },
_format: { _format: {
y: i18n('timestampFormat_y'), y: "MMM D, YYYY",
m: i18n('timestampFormat_m'), m: "MMM D",
d: i18n('timestampFormat_d') d: "ddd"
} }
}); });
Whisper.ExtendedTimestampView = Whisper.TimestampView.extend({ Whisper.ExtendedTimestampView = Whisper.TimestampView.extend({
@ -81,9 +81,9 @@
return i18n("extendedTimestamp_"+string).replace(/%d/i, number); return i18n("extendedTimestamp_"+string).replace(/%d/i, number);
}, },
_format: { _format: {
y: i18n('extendedTimestampFormat_y'), y: "MMM D, YYYY LT",
m: i18n('extendedTimestampFormat_m'), m: "MMM D LT",
d: i18n('extendedTimestampFormat_d') d: "ddd LT"
} }
}); });
})(); })();