My date-picker has a unique set up:
<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" />
https://i.sstatic.net/XN7Uc.png
Customizing the language of the months in my date-picker:
I currently have the "HOY" text successfully changing languages based on resources sent to my date-picker. I would like to achieve the same with the names of the months depending on the language being used.
NOTE: The framework I am using includes AngularJS and .NET Framework 4.5.