法语

时间:2015-09-04 06:02:58

标签: twitter-bootstrap

当我将浏览器的区域设置从英语更改为法语时,除了日历之外,所有内容都以法语显示。我的代码如下 - 请帮我解释如何用法语显示日历。

1 个答案:

答案 0 :(得分:0)

您没有说您正在使用哪个插件。这两个原则是一样的:

  1. First plugin

    $('#your_calendar').datetimepicker({
        locale: 'fr'
        // Others functions
    });
    
  2. 根据documentation,您必须包含moment-with-locales.js或本地js文件。

      

    有关有效的区域设置,请参阅momentjs

    1. Second plugin

      $('#your_calendar').datetimepicker({
          lang: 'fr',
          // Others functions
      });