Browse Source

feat: Add support for Swedish locale (#4455)

* Swedish locale

* Create sv_SE.tsx

* Create sv_SE.tsx

* Create sv_SE.tsx
pull/4516/head
Jesper We 8 years ago
committed by afc163
parent
commit
c6f6de3605
  1. 13
      components/date-picker/locale/sv_SE.jsx

13
components/date-picker/locale/sv_SE.jsx

@ -0,0 +1,13 @@
"use strict";
const sv_SE_1 = require("rc-calendar/lib/locale/sv_SE");
const sv_SE_2 = require("../../time-picker/locale/sv_SE");
const object_assign_1 = require("object-assign");
const locale = {
lang: object_assign_1.default({
placeholder: 'Välj datum',
rangePlaceholder: ['Startdatum', 'Slutdatum'],
}, sv_SE_1.default),
timePickerLocale: object_assign_1.default({}, sv_SE_2.default),
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = locale;
Loading…
Cancel
Save