First you have to load your locales ( get them here ) script after angular in index.html:
<script src="angular.js"></script> <script src="angular-locale_de-de.js"></script>
After that, the days and months are localized, but you need to translate the buttons yourself by adding parameters inside the date input tag:
<input type="text" class="form-control" datepicker-popup="dd.MM.yyyy" ng-model="dt" is-open="opened" min-date="minDate" max-date="'2042-04-02'" datepicker-options="dateOptions" date-disabled="disabled(date, mode)" ng-required="true" current-text="Tonight" clear-text="Reset" close-text="Exit" />
Pekka Feb 16 '15 at 11:24 2015-02-16 11:24
source share