は私が与えられたアプローチを使用して幸せではなかったので、私は角度を上書きするangular-translateと可能性を、使用してこれを考え出した:あなたはangular-dynamic-locale
でロケールを変更するたび
次に、これを行うには、このような-ui-ブートストラップ・テンプレート(ui-bootstrap-tpls.js
から出所):
uib/template/datepicker/day.html
の場合:
angular.module("uib/template/datepicker/day.html", []).run(["$templateCache", function($templateCache) {
$templateCache.put("uib/template/datepicker/day.html",
"<table class=\"uib-daypicker\" role=\"grid\" aria-labelledby=\"{{::uniqueId}}-title\" aria-activedescendant=\"{{activeDateId}}\">\n" +
" <thead>\n" +
" <tr>\n" +
" <th><button type=\"button\" class=\"btn btn-default btn-sm pull-left uib-left\" ng-click=\"move(-1)\" tabindex=\"-1\"><i class=\"glyphicon glyphicon-chevron-left\"></i></button></th>\n" +
" <th colspan=\"{{::5 + showWeeks}}\"><button id=\"{{::uniqueId}}-title\" role=\"heading\" aria-live=\"assertive\" aria-atomic=\"true\" type=\"button\" class=\"btn btn-default btn-sm uib-title\" ng-click=\"toggleMode()\" ng-disabled=\"datepickerMode === maxMode\" tabindex=\"-1\"><strong>{{ title | uppercase | localizeMonth }}</strong></button></th>\n" +
" <th><button type=\"button\" class=\"btn btn-default btn-sm pull-right uib-right\" ng-click=\"move(1)\" tabindex=\"-1\"><i class=\"glyphicon glyphicon-chevron-right\"></i></button></th>\n" +
" </tr>\n" +
" <tr>\n" +
" <th ng-if=\"showWeeks\" class=\"text-center\"></th>\n" +
" <th ng-repeat=\"label in ::labels track by $index\" class=\"text-center\"><small aria-label=\"{{::label.full}}\">{{ ('DAY_' + label.abbr | uppercase) | translate}}</small></th>\n" +
" </tr>\n" +
" </thead>\n" +
" <tbody>\n" +
" <tr class=\"uib-weeks\" ng-repeat=\"row in rows track by $index\">\n" +
" <td ng-if=\"showWeeks\" class=\"text-center h6\"><em>{{ weekNumbers[$index] }}</em></td>\n" +
" <td ng-repeat=\"dt in row\" class=\"uib-day text-center\" role=\"gridcell\"\n" +
" id=\"{{::dt.uid}}\"\n" +
" ng-class=\"::dt.customClass\">\n" +
" <button type=\"button\" class=\"btn btn-default btn-sm\"\n" +
" uib-is-class=\"\n" +
" 'btn-info' for selectedDt,\n" +
" 'active' for activeDt\n" +
" on dt\"\n" +
" ng-click=\"select(dt.date)\"\n" +
" ng-disabled=\"::dt.disabled\"\n" +
" tabindex=\"-1\"><span ng-class=\"::{'text-muted': dt.secondary, 'text-info': dt.current}\">{{::dt.label}}</span></button>\n" +
" </td>\n" +
" </tr>\n" +
" </tbody>\n" +
"</table>\n" +
"");
}]);
uib/template/datepicker/month.html
について:またして言語ファイルを拡張する必要が
angular.module("uib/template/datepicker/month.html", []).run(["$templateCache", function($templateCache) {
$templateCache.put("uib/template/datepicker/month.html",
"<table class=\"uib-monthpicker\" role=\"grid\" aria-labelledby=\"{{::uniqueId}}-title\" aria-activedescendant=\"{{activeDateId}}\">\n" +
" <thead>\n" +
" <tr>\n" +
" <th><button type=\"button\" class=\"btn btn-default btn-sm pull-left uib-left\" ng-click=\"move(-1)\" tabindex=\"-1\"><i class=\"glyphicon glyphicon-chevron-left\"></i></button></th>\n" +
" <th><button id=\"{{::uniqueId}}-title\" role=\"heading\" aria-live=\"assertive\" aria-atomic=\"true\" type=\"button\" class=\"btn btn-default btn-sm uib-title\" ng-click=\"toggleMode()\" ng-disabled=\"datepickerMode === maxMode\" tabindex=\"-1\"><strong>{{title}}</strong></button></th>\n" +
" <th><button type=\"button\" class=\"btn btn-default btn-sm pull-right uib-right\" ng-click=\"move(1)\" tabindex=\"-1\"><i class=\"glyphicon glyphicon-chevron-right\"></i></button></th>\n" +
" </tr>\n" +
" </thead>\n" +
" <tbody>\n" +
" <tr class=\"uib-months\" ng-repeat=\"row in rows track by $index\">\n" +
" <td ng-repeat=\"dt in row\" class=\"uib-month text-center\" role=\"gridcell\"\n" +
" id=\"{{::dt.uid}}\"\n" +
" ng-class=\"::dt.customClass\">\n" +
" <button type=\"button\" class=\"btn btn-default\"\n" +
" uib-is-class=\"\n" +
" 'btn-info' for selectedDt,\n" +
" 'active' for activeDt\n" +
" on dt\"\n" +
" ng-click=\"select(dt.date)\"\n" +
" ng-disabled=\"::dt.disabled\"\n" +
" tabindex=\"-1\"><span ng-class=\"::{'text-info': dt.current}\">{{ ('MONTH_' + dt.label | uppercase) | translate }}</span></button>\n" +
" </td>\n" +
" </tr>\n" +
" </tbody>\n" +
"</table>\n" +
"");
}]);
(これはドイツ語です):
, 'MONTH_JANUARY': 'Januar'
, 'MONTH_FEBRUARY': 'Februar'
, 'MONTH_MARCH': 'März'
, 'MONTH_APRIL': 'April'
, 'MONTH_MAY': 'May'
, 'MONTH_JUNE': 'June'
, 'MONTH_JULY': 'July'
, 'MONTH_AUGUST': 'August'
, 'MONTH_SEPTEMBER': 'September'
, 'MONTH_OCTOBER': 'October'
, 'MONTH_NOVEMBER': 'November'
, 'MONTH_DECEMBER': 'December'
そして日付ピッカーの現在の月がorignally {{title}}
としてレンダリングされているのでprovied scope.title = dateFilter(this.activeDate, this.formatDayTitle);
(ラインui-bootstrap-tpls.js
における2216)によって、あなたは現在の月をローカライズするためのフィルタをロードする必要が(this postのおかげで):
/* global app */
app.filter('localizeMonth', function($interpolate)
{
return function (input)
{
return input
.replace(/JANUARY/g, $interpolate('{{ \'MONTH_JANUARY\' | translate}}'))
.replace(/FEBRUARY/g, $interpolate('{{ \'MONTH_FEBRUARY\' | translate}}'))
.replace(/MARCH/g, $interpolate('{{ \'MONTH_MARCH\' | translate}}'))
.replace(/APRIL/g, $interpolate('{{ \'MONTH_APRIL\' | translate}}'))
.replace(/MAY/g, $interpolate('{{ \'MONTH_MAY\' | translate}}'))
.replace(/JUNE/g, $interpolate('{{ \'MONTH_JUNE\' | translate}}'))
.replace(/JULY/g, $interpolate('{{ \'MONTH_JULY\' | translate}}'))
.replace(/AUGUST/g, $interpolate('{{ \'MONTH_AUGUST\' | translate}}'))
.replace(/SEPTEMBER/g, $interpolate('{{ \'MONTH_SEPTEMBER\' | translate}}'))
.replace(/OCTOBER/g, $interpolate('{{ \'MONTH_OCTOBER\' | translate}}'))
.replace(/NOVEMBER/g, $interpolate('{{ \'MONTH_NOVEMBER\' | translate}}'))
.replace(/DECEMBER/g, $interpolate('{{ \'MONTH_DECEMBER\' | translate}}'))
;
};
});
私は、このソリューションは、ここで発明された他のハックと少なくとも同じくらい醜いと思いますが、自分で再描画や類似のものをトリガーする必要はありません。
[AngularJS/Angular-ui-bootstrap]の複製可能datePickerで使用される言語の変更](http://stackoverflow.com/questions/19671887/angularjs-angular-ui-bootstrap-changing-language-used-by- the-datepicker) – redben
@redben質問は同じかもしれませんが、質問の定式化につながった文脈は異なります。 – ThCC
こんにちは。特定の言語スクリプトを追加せずに言語を変更する方法はありますか? –