Date translation

Hi i have this english date ‘MON MAR 30’, i need to translate into french and spanish when the app language
change to french r spanish.
here activity.label contains the english date(‘MON MAR 30’).
here actually translation is happening but output is wrong, its showing wrong day with date.
so is there any work arround which i can translate.

.html

{{ (activity.label == ‘Today’ ? ‘TODAY’ : ( activity.label | date: ‘EEE MMM d’: null : translate.currentLang) ) | translate}}

I use and recommend date-fns for all such tasks.