• angular-ui-bootstrap 日历控件国际化


    angularjs-angular-ui-bootstrap-changing-language

    http://stackoverflow.com/questions/19671887/angularjs-angular-ui-bootstrap-changing-language-used-by-the-datepicker

    https://code.angularjs.org/1.0.8/i18n/

    不能翻墙的 把中文的留下吧

    angular.module("ngLocale", [], ["$provide", function($provide) {
    var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
    $provide.value("$locale", {
      "DATETIME_FORMATS": {
        "AMPMS": [
          "u4e0au5348",
          "u4e0bu5348"
        ],
        "DAY": [
          "u661fu671fu65e5",
          "u661fu671fu4e00",
          "u661fu671fu4e8c",
          "u661fu671fu4e09",
          "u661fu671fu56db",
          "u661fu671fu4e94",
          "u661fu671fu516d"
        ],
        "MONTH": [
          "1u6708",
          "2u6708",
          "3u6708",
          "4u6708",
          "5u6708",
          "6u6708",
          "7u6708",
          "8u6708",
          "9u6708",
          "10u6708",
          "11u6708",
          "12u6708"
        ],
        "SHORTDAY": [
          "u5468u65e5",
          "u5468u4e00",
          "u5468u4e8c",
          "u5468u4e09",
          "u5468u56db",
          "u5468u4e94",
          "u5468u516d"
        ],
        "SHORTMONTH": [
          "1u6708",
          "2u6708",
          "3u6708",
          "4u6708",
          "5u6708",
          "6u6708",
          "7u6708",
          "8u6708",
          "9u6708",
          "10u6708",
          "11u6708",
          "12u6708"
        ],
        "fullDate": "yu5e74Mu6708du65e5EEEE",
        "longDate": "yu5e74Mu6708du65e5",
        "medium": "yyyy-M-d ah:mm:ss",
        "mediumDate": "yyyy-M-d",
        "mediumTime": "ah:mm:ss",
        "short": "yy-M-d ah:mm",
        "shortDate": "yy-M-d",
        "shortTime": "ah:mm"
      },
      "NUMBER_FORMATS": {
        "CURRENCY_SYM": "u00a5",
        "DECIMAL_SEP": ".",
        "GROUP_SEP": ",",
        "PATTERNS": [
          {
            "gSize": 3,
            "lgSize": 3,
            "macFrac": 0,
            "maxFrac": 3,
            "minFrac": 0,
            "minInt": 1,
            "negPre": "-",
            "negSuf": "",
            "posPre": "",
            "posSuf": ""
          },
          {
            "gSize": 3,
            "lgSize": 3,
            "macFrac": 0,
            "maxFrac": 2,
            "minFrac": 2,
            "minInt": 1,
            "negPre": "(u00a4",
            "negSuf": ")",
            "posPre": "u00a4",
            "posSuf": ""
          }
        ]
      },
      "id": "zh-cn",
      "pluralCat": function (n) {  return PLURAL_CATEGORY.OTHER;}
    });
    }]);
  • 相关阅读:
    设计模式——装饰模式(Decorator Pattern)
    设计模式——策略模式(Strategy Pattern)
    设计模式——简单工厂模式(SimpleFactory Pattern)
    入博客园三周年记
    android+Service
    surfaceView+canvas+paint+bitmap
    Enable Sublime text 2 to support GBK in Mac
    androidstudio+opencv
    mac下的环境变量PATH
    Curl命令
  • 原文地址:https://www.cnblogs.com/acmilan/p/4276229.html
Copyright © 2020-2023  润新知