I have a date-picker
<input type="text" ng-readonly="true" class="form-control"
datepicker-popup="yyyy-MM-dd" ng-model="filter.FInicial"
is-open="filter.controlFInicialAbierto"
min-date="minDateIni" max-date="maxDateIni"
datepicker-options="dateOptions"
ng-change="setNewEndDate()"
date-disabled="disabled(date, mode)"
ng-required="true"
close-text="@ReporteAccesosRNECRESX.CerrarCalendar"
clear-text="@ReporteAccesosRNECRESX.LimpiarCalendar"
current-text="@ReporteAccesosRNECRESX.ActualCalendar" />
The months appears in English and I would like using Resources change this, How can I send the name of the months to my date-picker depends on what language I'm currently using
NOTE: the current-text "HOY" works and change the language exactly that I want because I send a resource to my date-picker (current-text="@ReporteAccesosRNECRESX.ActualCalendar"), I would like to do same with the months. I'm using angularjs .net framework 4.5