@seafile/seafile-calendar 0.0.30-beta.1 → 0.0.30-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/index.css +1177 -0
- package/dist/rc-calendar.css +1179 -0
- package/dist/rc-calendar.css.map +1 -0
- package/dist/rc-calendar.js +7500 -0
- package/dist/rc-calendar.js.map +1 -0
- package/dist/rc-calendar.min.css +1179 -0
- package/dist/rc-calendar.min.css.map +1 -0
- package/dist/rc-calendar.min.js +1 -0
- package/es/Calendar.js +454 -0
- package/es/FullCalendar.js +182 -0
- package/es/MonthCalendar.js +135 -0
- package/es/Picker.js +245 -0
- package/es/RangeCalendar.js +876 -0
- package/es/calendar/CalendarFooter.js +93 -0
- package/es/calendar/CalendarHeader.js +257 -0
- package/es/calendar/CalendarRightPanel.js +135 -0
- package/es/calendar/OkButton.js +22 -0
- package/es/calendar/TimePickerButton.js +28 -0
- package/es/calendar/TodayButton.js +28 -0
- package/es/date/DateConstants.js +19 -0
- package/es/date/DateInput.js +444 -0
- package/es/date/DateTBody.js +280 -0
- package/es/date/DateTHead.js +86 -0
- package/es/date/DateTable.js +32 -0
- package/es/decade/DecadePanel.js +181 -0
- package/es/full-calendar/CalendarHeader.js +180 -0
- package/es/index.js +3 -0
- package/es/locale/ar_EG.js +27 -0
- package/es/locale/bg_BG.js +27 -0
- package/es/locale/ca_ES.js +27 -0
- package/es/locale/cs_CZ.js +27 -0
- package/es/locale/da_DK.js +27 -0
- package/es/locale/de_DE.js +27 -0
- package/es/locale/el_GR.js +27 -0
- package/es/locale/en_GB.js +27 -0
- package/es/locale/en_US.js +28 -0
- package/es/locale/es_ES.js +27 -0
- package/es/locale/et_EE.js +27 -0
- package/es/locale/fa_IR.js +27 -0
- package/es/locale/fi_FI.js +27 -0
- package/es/locale/fr_BE.js +27 -0
- package/es/locale/fr_FR.js +27 -0
- package/es/locale/he_IL.js +28 -0
- package/es/locale/hi_IN.js +28 -0
- package/es/locale/hr_HR.js +28 -0
- package/es/locale/hu_HU.js +27 -0
- package/es/locale/id_ID.js +28 -0
- package/es/locale/is_IS.js +27 -0
- package/es/locale/it_IT.js +27 -0
- package/es/locale/ja_JP.js +26 -0
- package/es/locale/kn_IN.js +28 -0
- package/es/locale/ko_KR.js +27 -0
- package/es/locale/ku_IQ.js +27 -0
- package/es/locale/lv_LV.js +27 -0
- package/es/locale/mm_MM.js +28 -0
- package/es/locale/mn_MN.js +28 -0
- package/es/locale/ms_MY.js +27 -0
- package/es/locale/nb_NO.js +27 -0
- package/es/locale/nl_BE.js +27 -0
- package/es/locale/nl_NL.js +27 -0
- package/es/locale/pl_PL.js +27 -0
- package/es/locale/pt_BR.js +27 -0
- package/es/locale/pt_PT.js +27 -0
- package/es/locale/ro_RO.js +28 -0
- package/es/locale/ru_RU.js +27 -0
- package/es/locale/sk_SK.js +27 -0
- package/es/locale/sl_SI.js +27 -0
- package/es/locale/sr_RS.js +27 -0
- package/es/locale/sv_SE.js +27 -0
- package/es/locale/ta_IN.js +28 -0
- package/es/locale/th_TH.js +27 -0
- package/es/locale/tr_TR.js +27 -0
- package/es/locale/ug_CN.js +26 -0
- package/es/locale/uk_UA.js +27 -0
- package/es/locale/vi_VN.js +28 -0
- package/es/locale/zh_CN.js +27 -0
- package/es/locale/zh_TW.js +26 -0
- package/es/mixin/CalendarMixin.js +123 -0
- package/es/mixin/CommonMixin.js +85 -0
- package/es/month/MonthPanel.js +154 -0
- package/es/month/MonthTable.js +156 -0
- package/es/picker/placements.js +35 -0
- package/es/range-calendar/CalendarPart.js +151 -0
- package/es/util/dayjs.js +17 -0
- package/es/util/index.js +272 -0
- package/es/util/toTime.js +21 -0
- package/es/year/YearPanel.js +194 -0
- package/lib/Calendar.js +517 -0
- package/lib/FullCalendar.js +221 -0
- package/lib/MonthCalendar.js +172 -0
- package/lib/Picker.js +282 -0
- package/lib/RangeCalendar.js +925 -0
- package/lib/calendar/CalendarFooter.js +134 -0
- package/lib/calendar/CalendarHeader.js +290 -0
- package/lib/calendar/CalendarRightPanel.js +160 -0
- package/lib/calendar/OkButton.js +32 -0
- package/lib/calendar/TimePickerButton.js +41 -0
- package/lib/calendar/TodayButton.js +39 -0
- package/lib/date/DateConstants.js +23 -0
- package/lib/date/DateInput.js +476 -0
- package/lib/date/DateTBody.js +307 -0
- package/lib/date/DateTHead.js +106 -0
- package/lib/date/DateTable.js +54 -0
- package/lib/decade/DecadePanel.js +207 -0
- package/lib/full-calendar/CalendarHeader.js +201 -0
- package/lib/index.js +12 -0
- package/lib/locale/ar_EG.js +31 -0
- package/lib/locale/bg_BG.js +31 -0
- package/lib/locale/ca_ES.js +31 -0
- package/lib/locale/cs_CZ.js +31 -0
- package/lib/locale/da_DK.js +31 -0
- package/lib/locale/de_DE.js +31 -0
- package/lib/locale/el_GR.js +31 -0
- package/lib/locale/en_GB.js +31 -0
- package/lib/locale/en_US.js +32 -0
- package/lib/locale/es_ES.js +31 -0
- package/lib/locale/et_EE.js +31 -0
- package/lib/locale/fa_IR.js +31 -0
- package/lib/locale/fi_FI.js +31 -0
- package/lib/locale/fr_BE.js +31 -0
- package/lib/locale/fr_FR.js +31 -0
- package/lib/locale/he_IL.js +32 -0
- package/lib/locale/hi_IN.js +32 -0
- package/lib/locale/hr_HR.js +32 -0
- package/lib/locale/hu_HU.js +31 -0
- package/lib/locale/id_ID.js +32 -0
- package/lib/locale/is_IS.js +31 -0
- package/lib/locale/it_IT.js +31 -0
- package/lib/locale/ja_JP.js +30 -0
- package/lib/locale/kn_IN.js +32 -0
- package/lib/locale/ko_KR.js +31 -0
- package/lib/locale/ku_IQ.js +31 -0
- package/lib/locale/lv_LV.js +31 -0
- package/lib/locale/mm_MM.js +32 -0
- package/lib/locale/mn_MN.js +32 -0
- package/lib/locale/ms_MY.js +31 -0
- package/lib/locale/nb_NO.js +31 -0
- package/lib/locale/nl_BE.js +31 -0
- package/lib/locale/nl_NL.js +31 -0
- package/lib/locale/pl_PL.js +31 -0
- package/lib/locale/pt_BR.js +31 -0
- package/lib/locale/pt_PT.js +31 -0
- package/lib/locale/ro_RO.js +32 -0
- package/lib/locale/ru_RU.js +31 -0
- package/lib/locale/sk_SK.js +31 -0
- package/lib/locale/sl_SI.js +31 -0
- package/lib/locale/sr_RS.js +31 -0
- package/lib/locale/sv_SE.js +31 -0
- package/lib/locale/ta_IN.js +32 -0
- package/lib/locale/th_TH.js +31 -0
- package/lib/locale/tr_TR.js +31 -0
- package/lib/locale/ug_CN.js +30 -0
- package/lib/locale/uk_UA.js +31 -0
- package/lib/locale/vi_VN.js +32 -0
- package/lib/locale/zh_CN.js +31 -0
- package/lib/locale/zh_TW.js +30 -0
- package/lib/mixin/CalendarMixin.js +153 -0
- package/lib/mixin/CommonMixin.js +106 -0
- package/lib/month/MonthPanel.js +179 -0
- package/lib/month/MonthTable.js +181 -0
- package/lib/picker/placements.js +39 -0
- package/lib/range-calendar/CalendarPart.js +184 -0
- package/lib/util/dayjs.js +46 -0
- package/lib/util/index.js +307 -0
- package/lib/util/toTime.js +28 -0
- package/lib/year/YearPanel.js +219 -0
- package/package.json +2 -1
@@ -0,0 +1,201 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
|
5
|
+
var _classCallCheck2 = require('babel-runtime/helpers/classCallCheck');
|
6
|
+
|
7
|
+
var _classCallCheck3 = _interopRequireDefault(_classCallCheck2);
|
8
|
+
|
9
|
+
var _possibleConstructorReturn2 = require('babel-runtime/helpers/possibleConstructorReturn');
|
10
|
+
|
11
|
+
var _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);
|
12
|
+
|
13
|
+
var _inherits2 = require('babel-runtime/helpers/inherits');
|
14
|
+
|
15
|
+
var _inherits3 = _interopRequireDefault(_inherits2);
|
16
|
+
|
17
|
+
var _react = require('react');
|
18
|
+
|
19
|
+
var _react2 = _interopRequireDefault(_react);
|
20
|
+
|
21
|
+
var _propTypes = require('prop-types');
|
22
|
+
|
23
|
+
var _propTypes2 = _interopRequireDefault(_propTypes);
|
24
|
+
|
25
|
+
var _util = require('../util');
|
26
|
+
|
27
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
28
|
+
|
29
|
+
function noop() {}
|
30
|
+
|
31
|
+
var CalendarHeader = function (_Component) {
|
32
|
+
(0, _inherits3['default'])(CalendarHeader, _Component);
|
33
|
+
|
34
|
+
function CalendarHeader() {
|
35
|
+
(0, _classCallCheck3['default'])(this, CalendarHeader);
|
36
|
+
return (0, _possibleConstructorReturn3['default'])(this, _Component.apply(this, arguments));
|
37
|
+
}
|
38
|
+
|
39
|
+
CalendarHeader.prototype.onYearChange = function onYearChange(year) {
|
40
|
+
var newValue = this.props.value.clone();
|
41
|
+
newValue = newValue.year(parseInt(year, 10));
|
42
|
+
this.props.onValueChange(newValue);
|
43
|
+
};
|
44
|
+
|
45
|
+
CalendarHeader.prototype.onMonthChange = function onMonthChange(month) {
|
46
|
+
var newValue = this.props.value.clone();
|
47
|
+
newValue = newValue.month(parseInt(month, 10));
|
48
|
+
this.props.onValueChange(newValue);
|
49
|
+
};
|
50
|
+
|
51
|
+
CalendarHeader.prototype.yearSelectElement = function yearSelectElement(year) {
|
52
|
+
var _props = this.props,
|
53
|
+
yearSelectOffset = _props.yearSelectOffset,
|
54
|
+
yearSelectTotal = _props.yearSelectTotal,
|
55
|
+
prefixCls = _props.prefixCls,
|
56
|
+
Select = _props.Select;
|
57
|
+
|
58
|
+
var start = year - yearSelectOffset;
|
59
|
+
var end = start + yearSelectTotal;
|
60
|
+
|
61
|
+
var options = [];
|
62
|
+
for (var index = start; index < end; index++) {
|
63
|
+
options.push(_react2['default'].createElement(
|
64
|
+
Select.Option,
|
65
|
+
{ key: '' + index },
|
66
|
+
index
|
67
|
+
));
|
68
|
+
}
|
69
|
+
return _react2['default'].createElement(
|
70
|
+
Select,
|
71
|
+
{
|
72
|
+
className: prefixCls + '-header-year-select',
|
73
|
+
onChange: this.onYearChange.bind(this),
|
74
|
+
dropdownStyle: { zIndex: 2000 },
|
75
|
+
dropdownMenuStyle: { maxHeight: 250, overflow: 'auto', fontSize: 12 },
|
76
|
+
optionLabelProp: 'children',
|
77
|
+
value: String(year),
|
78
|
+
showSearch: false
|
79
|
+
},
|
80
|
+
options
|
81
|
+
);
|
82
|
+
};
|
83
|
+
|
84
|
+
CalendarHeader.prototype.monthSelectElement = function monthSelectElement(month) {
|
85
|
+
var props = this.props;
|
86
|
+
var t = props.value.clone();
|
87
|
+
var prefixCls = props.prefixCls;
|
88
|
+
|
89
|
+
var options = [];
|
90
|
+
var Select = props.Select;
|
91
|
+
|
92
|
+
for (var index = 0; index < 12; index++) {
|
93
|
+
t = t.month(index);
|
94
|
+
options.push(_react2['default'].createElement(
|
95
|
+
Select.Option,
|
96
|
+
{ key: '' + index },
|
97
|
+
(0, _util.getMonthName)(t)
|
98
|
+
));
|
99
|
+
}
|
100
|
+
|
101
|
+
return _react2['default'].createElement(
|
102
|
+
Select,
|
103
|
+
{
|
104
|
+
className: prefixCls + '-header-month-select',
|
105
|
+
dropdownStyle: { zIndex: 2000 },
|
106
|
+
dropdownMenuStyle: { maxHeight: 250, overflow: 'auto', overflowX: 'hidden', fontSize: 12 },
|
107
|
+
optionLabelProp: 'children',
|
108
|
+
value: String(month),
|
109
|
+
showSearch: false,
|
110
|
+
onChange: this.onMonthChange.bind(this)
|
111
|
+
},
|
112
|
+
options
|
113
|
+
);
|
114
|
+
};
|
115
|
+
|
116
|
+
CalendarHeader.prototype.changeTypeToDate = function changeTypeToDate() {
|
117
|
+
this.props.onTypeChange('date');
|
118
|
+
};
|
119
|
+
|
120
|
+
CalendarHeader.prototype.changeTypeToMonth = function changeTypeToMonth() {
|
121
|
+
this.props.onTypeChange('month');
|
122
|
+
};
|
123
|
+
|
124
|
+
CalendarHeader.prototype.render = function render() {
|
125
|
+
var _props2 = this.props,
|
126
|
+
value = _props2.value,
|
127
|
+
locale = _props2.locale,
|
128
|
+
prefixCls = _props2.prefixCls,
|
129
|
+
type = _props2.type,
|
130
|
+
showTypeSwitch = _props2.showTypeSwitch,
|
131
|
+
headerComponents = _props2.headerComponents;
|
132
|
+
|
133
|
+
var year = value.year();
|
134
|
+
var month = value.month();
|
135
|
+
var yearSelect = this.yearSelectElement(year);
|
136
|
+
var monthSelect = type === 'month' ? null : this.monthSelectElement(month);
|
137
|
+
var switchCls = prefixCls + '-header-switcher';
|
138
|
+
var typeSwitcher = showTypeSwitch ? _react2['default'].createElement(
|
139
|
+
'span',
|
140
|
+
{ className: switchCls },
|
141
|
+
type === 'date' ? _react2['default'].createElement(
|
142
|
+
'span',
|
143
|
+
{ className: switchCls + '-focus' },
|
144
|
+
locale.month
|
145
|
+
) : _react2['default'].createElement(
|
146
|
+
'span',
|
147
|
+
{
|
148
|
+
onClick: this.changeTypeToDate.bind(this),
|
149
|
+
className: switchCls + '-normal'
|
150
|
+
},
|
151
|
+
locale.month
|
152
|
+
),
|
153
|
+
type === 'month' ? _react2['default'].createElement(
|
154
|
+
'span',
|
155
|
+
{ className: switchCls + '-focus' },
|
156
|
+
locale.year
|
157
|
+
) : _react2['default'].createElement(
|
158
|
+
'span',
|
159
|
+
{
|
160
|
+
onClick: this.changeTypeToMonth.bind(this),
|
161
|
+
className: switchCls + '-normal'
|
162
|
+
},
|
163
|
+
locale.year
|
164
|
+
)
|
165
|
+
) : null;
|
166
|
+
|
167
|
+
return _react2['default'].createElement(
|
168
|
+
'div',
|
169
|
+
{ className: prefixCls + '-header' },
|
170
|
+
typeSwitcher,
|
171
|
+
monthSelect,
|
172
|
+
yearSelect,
|
173
|
+
headerComponents
|
174
|
+
);
|
175
|
+
};
|
176
|
+
|
177
|
+
return CalendarHeader;
|
178
|
+
}(_react.Component);
|
179
|
+
|
180
|
+
CalendarHeader.propTypes = {
|
181
|
+
value: _propTypes2['default'].object,
|
182
|
+
locale: _propTypes2['default'].object,
|
183
|
+
yearSelectOffset: _propTypes2['default'].number,
|
184
|
+
yearSelectTotal: _propTypes2['default'].number,
|
185
|
+
onValueChange: _propTypes2['default'].func,
|
186
|
+
onTypeChange: _propTypes2['default'].func,
|
187
|
+
Select: _propTypes2['default'].func,
|
188
|
+
prefixCls: _propTypes2['default'].string,
|
189
|
+
type: _propTypes2['default'].string,
|
190
|
+
showTypeSwitch: _propTypes2['default'].bool,
|
191
|
+
headerComponents: _propTypes2['default'].array
|
192
|
+
};
|
193
|
+
CalendarHeader.defaultProps = {
|
194
|
+
yearSelectOffset: 10,
|
195
|
+
yearSelectTotal: 20,
|
196
|
+
onValueChange: noop,
|
197
|
+
onTypeChange: noop
|
198
|
+
};
|
199
|
+
|
200
|
+
exports['default'] = CalendarHeader;
|
201
|
+
module.exports = exports['default'];
|
package/lib/index.js
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
|
5
|
+
var _Calendar = require('./Calendar');
|
6
|
+
|
7
|
+
var _Calendar2 = _interopRequireDefault(_Calendar);
|
8
|
+
|
9
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
10
|
+
|
11
|
+
exports['default'] = _Calendar2['default'];
|
12
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'اليوم',
|
6
|
+
now: 'الأن',
|
7
|
+
backToToday: 'العودة إلى اليوم',
|
8
|
+
ok: 'تأكيد',
|
9
|
+
clear: 'مسح',
|
10
|
+
month: 'الشهر',
|
11
|
+
year: 'السنة',
|
12
|
+
timeSelect: 'اختيار الوقت',
|
13
|
+
dateSelect: 'اختيار التاريخ',
|
14
|
+
monthSelect: 'اختيار الشهر',
|
15
|
+
yearSelect: 'اختيار السنة',
|
16
|
+
decadeSelect: 'اختيار العقد',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'M/D/YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'M/D/YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'الشهر السابق (PageUp)',
|
23
|
+
nextMonth: 'الشهر التالى(PageDown)',
|
24
|
+
previousYear: 'العام السابق (Control + left)',
|
25
|
+
nextYear: 'العام التالى (Control + right)',
|
26
|
+
previousDecade: 'العقد السابق',
|
27
|
+
nextDecade: 'العقد التالى',
|
28
|
+
previousCentury: 'القرن السابق',
|
29
|
+
nextCentury: 'القرن التالى'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Днес',
|
6
|
+
now: 'Сега',
|
7
|
+
backToToday: 'Към днес',
|
8
|
+
ok: 'Добре',
|
9
|
+
clear: 'Изчистване',
|
10
|
+
month: 'Месец',
|
11
|
+
year: 'Година',
|
12
|
+
timeSelect: 'Избор на час',
|
13
|
+
dateSelect: 'Избор на дата',
|
14
|
+
monthSelect: 'Избор на месец',
|
15
|
+
yearSelect: 'Избор на година',
|
16
|
+
decadeSelect: 'Десетилетие',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D M YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D M YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Предишен месец (PageUp)',
|
23
|
+
nextMonth: 'Следващ месец (PageDown)',
|
24
|
+
previousYear: 'Последна година (Control + left)',
|
25
|
+
nextYear: 'Следваща година (Control + right)',
|
26
|
+
previousDecade: 'Предишно десетилетие',
|
27
|
+
nextDecade: 'Следващо десетилетие',
|
28
|
+
previousCentury: 'Последен век',
|
29
|
+
nextCentury: 'Следващ век'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Avui',
|
6
|
+
now: 'Ara',
|
7
|
+
backToToday: 'Tornar a avui',
|
8
|
+
ok: 'Acceptar',
|
9
|
+
clear: 'Netejar',
|
10
|
+
month: 'Mes',
|
11
|
+
year: 'Any',
|
12
|
+
timeSelect: 'Seleccionar hora',
|
13
|
+
dateSelect: 'Seleccionar data',
|
14
|
+
monthSelect: 'Escollir un mes',
|
15
|
+
yearSelect: 'Escollir un any',
|
16
|
+
decadeSelect: 'Escollir una dècada',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D/M/YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Mes anterior (PageUp)',
|
23
|
+
nextMonth: 'Mes següent (PageDown)',
|
24
|
+
previousYear: 'Any anterior (Control + left)',
|
25
|
+
nextYear: 'Mes següent (Control + right)',
|
26
|
+
previousDecade: 'Dècada anterior',
|
27
|
+
nextDecade: 'Dècada següent',
|
28
|
+
previousCentury: 'Segle anterior',
|
29
|
+
nextCentury: 'Segle següent'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Dnes',
|
6
|
+
now: 'Nyní',
|
7
|
+
backToToday: 'Zpět na dnešek',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Vymazat',
|
10
|
+
month: 'Měsíc',
|
11
|
+
year: 'Rok',
|
12
|
+
timeSelect: 'Vybrat čas',
|
13
|
+
dateSelect: 'Vybrat datum',
|
14
|
+
monthSelect: 'Vyberte měsíc',
|
15
|
+
yearSelect: 'Vyberte rok',
|
16
|
+
decadeSelect: 'Vyberte dekádu',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D.M.YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D.M.YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Předchozí měsíc (PageUp)',
|
23
|
+
nextMonth: 'Následující (PageDown)',
|
24
|
+
previousYear: 'Předchozí rok (Control + left)',
|
25
|
+
nextYear: 'Následující rok (Control + right)',
|
26
|
+
previousDecade: 'Předchozí dekáda',
|
27
|
+
nextDecade: 'Následující dekáda',
|
28
|
+
previousCentury: 'Předchozí století',
|
29
|
+
nextCentury: 'Následující století'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'I dag',
|
6
|
+
now: 'Nu',
|
7
|
+
backToToday: 'Gå til i dag',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Annuller',
|
10
|
+
month: 'Måned',
|
11
|
+
year: 'År',
|
12
|
+
timeSelect: 'Vælg tidspunkt',
|
13
|
+
dateSelect: 'Vælg dato',
|
14
|
+
monthSelect: 'Vælg måned',
|
15
|
+
yearSelect: 'Vælg år',
|
16
|
+
decadeSelect: 'Vælg årti',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D/M/YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Forrige måned(PageUp)',
|
23
|
+
nextMonth: 'Næste måned (PageDown)',
|
24
|
+
previousYear: 'Forrige år (Control + left)',
|
25
|
+
nextYear: 'Næste r (Control + right)',
|
26
|
+
previousDecade: 'Forrige årti',
|
27
|
+
nextDecade: 'Næste årti',
|
28
|
+
previousCentury: 'Forrige århundrede',
|
29
|
+
nextCentury: 'Næste århundrede'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Heute',
|
6
|
+
now: 'Jetzt',
|
7
|
+
backToToday: 'Zurück zu Heute',
|
8
|
+
ok: 'OK',
|
9
|
+
clear: 'Zurücksetzen',
|
10
|
+
month: 'Monat',
|
11
|
+
year: 'Jahr',
|
12
|
+
timeSelect: 'Zeit wählen',
|
13
|
+
dateSelect: 'Datum wählen',
|
14
|
+
monthSelect: 'Wähle einen Monat',
|
15
|
+
yearSelect: 'Wähle ein Jahr',
|
16
|
+
decadeSelect: 'Wähle ein Jahrzehnt',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D.M.YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D.M.YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Vorheriger Monat (PageUp)',
|
23
|
+
nextMonth: 'Nächster Monat (PageDown)',
|
24
|
+
previousYear: 'Vorheriges Jahr (Ctrl + left)',
|
25
|
+
nextYear: 'Nächstes Jahr (Ctrl + right)',
|
26
|
+
previousDecade: 'Vorheriges Jahrzehnt',
|
27
|
+
nextDecade: 'Nächstes Jahrzehnt',
|
28
|
+
previousCentury: 'Vorheriges Jahrhundert',
|
29
|
+
nextCentury: 'Nächstes Jahrhundert'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Σήμερα',
|
6
|
+
now: 'Τώρα',
|
7
|
+
backToToday: 'Πίσω στη σημερινή μέρα',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Καθαρισμός',
|
10
|
+
month: 'Μήνας',
|
11
|
+
year: 'Έτος',
|
12
|
+
timeSelect: 'Επιλογή ώρας',
|
13
|
+
dateSelect: 'Επιλογή ημερομηνίας',
|
14
|
+
monthSelect: 'Επιλογή μήνα',
|
15
|
+
yearSelect: 'Επιλογή έτους',
|
16
|
+
decadeSelect: 'Επιλογή δεκαετίας',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D/M/YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Προηγούμενος μήνας (PageUp)',
|
23
|
+
nextMonth: 'Επόμενος μήνας (PageDown)',
|
24
|
+
previousYear: 'Προηγούμενο έτος (Control + αριστερά)',
|
25
|
+
nextYear: 'Επόμενο έτος (Control + δεξιά)',
|
26
|
+
previousDecade: 'Προηγούμενη δεκαετία',
|
27
|
+
nextDecade: 'Επόμενη δεκαετία',
|
28
|
+
previousCentury: 'Προηγούμενος αιώνας',
|
29
|
+
nextCentury: 'Επόμενος αιώνας'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Today',
|
6
|
+
now: 'Now',
|
7
|
+
backToToday: 'Back to today',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Clear',
|
10
|
+
month: 'Month',
|
11
|
+
year: 'Year',
|
12
|
+
timeSelect: 'Select time',
|
13
|
+
dateSelect: 'Select date',
|
14
|
+
monthSelect: 'Choose a month',
|
15
|
+
yearSelect: 'Choose a year',
|
16
|
+
decadeSelect: 'Choose a decade',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D/M/YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Previous month (PageUp)',
|
23
|
+
nextMonth: 'Next month (PageDown)',
|
24
|
+
previousYear: 'Last year (Control + left)',
|
25
|
+
nextYear: 'Next year (Control + right)',
|
26
|
+
previousDecade: 'Last decade',
|
27
|
+
nextDecade: 'Next decade',
|
28
|
+
previousCentury: 'Last century',
|
29
|
+
nextCentury: 'Next century'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,32 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Today',
|
6
|
+
now: 'Now',
|
7
|
+
backToToday: 'Back to today',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Clear',
|
10
|
+
month: 'Month',
|
11
|
+
year: 'Year',
|
12
|
+
timeSelect: 'select time',
|
13
|
+
dateSelect: 'select date',
|
14
|
+
weekSelect: 'Choose a week',
|
15
|
+
monthSelect: 'Choose a month',
|
16
|
+
yearSelect: 'Choose a year',
|
17
|
+
decadeSelect: 'Choose a decade',
|
18
|
+
yearFormat: 'YYYY',
|
19
|
+
dateFormat: 'M/D/YYYY',
|
20
|
+
dayFormat: 'D',
|
21
|
+
dateTimeFormat: 'M/D/YYYY HH:mm:ss',
|
22
|
+
monthBeforeYear: true,
|
23
|
+
previousMonth: 'Previous month (PageUp)',
|
24
|
+
nextMonth: 'Next month (PageDown)',
|
25
|
+
previousYear: 'Last year (Control + left)',
|
26
|
+
nextYear: 'Next year (Control + right)',
|
27
|
+
previousDecade: 'Last decade',
|
28
|
+
nextDecade: 'Next decade',
|
29
|
+
previousCentury: 'Last century',
|
30
|
+
nextCentury: 'Next century'
|
31
|
+
};
|
32
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Hoy',
|
6
|
+
now: 'Ahora',
|
7
|
+
backToToday: 'Volver a hoy',
|
8
|
+
ok: 'Aceptar',
|
9
|
+
clear: 'Limpiar',
|
10
|
+
month: 'Mes',
|
11
|
+
year: 'Año',
|
12
|
+
timeSelect: 'Seleccionar hora',
|
13
|
+
dateSelect: 'Seleccionar fecha',
|
14
|
+
monthSelect: 'Elegir un mes',
|
15
|
+
yearSelect: 'Elegir un año',
|
16
|
+
decadeSelect: 'Elegir una década',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D/M/YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Mes anterior (PageUp)',
|
23
|
+
nextMonth: 'Mes siguiente (PageDown)',
|
24
|
+
previousYear: 'Año anterior (Control + left)',
|
25
|
+
nextYear: 'Año siguiente (Control + right)',
|
26
|
+
previousDecade: 'Década anterior',
|
27
|
+
nextDecade: 'Década siguiente',
|
28
|
+
previousCentury: 'Siglo anterior',
|
29
|
+
nextCentury: 'Siglo siguiente'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Täna',
|
6
|
+
now: 'Praegu',
|
7
|
+
backToToday: 'Tagasi tänase juurde',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Tühista',
|
10
|
+
month: 'Kuu',
|
11
|
+
year: 'Aasta',
|
12
|
+
timeSelect: 'Vali aeg',
|
13
|
+
dateSelect: 'Vali kuupäev',
|
14
|
+
monthSelect: 'Vali kuu',
|
15
|
+
yearSelect: 'Vali aasta',
|
16
|
+
decadeSelect: 'Vali dekaad',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D.M.YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D.M.YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Eelmine kuu (PageUp)',
|
23
|
+
nextMonth: 'Järgmine kuu (PageDown)',
|
24
|
+
previousYear: 'Eelmine aasta (Control + left)',
|
25
|
+
nextYear: 'Järgmine aasta (Control + right)',
|
26
|
+
previousDecade: 'Eelmine dekaad',
|
27
|
+
nextDecade: 'Järgmine dekaad',
|
28
|
+
previousCentury: 'Eelmine sajand',
|
29
|
+
nextCentury: 'Järgmine sajand'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'امروز',
|
6
|
+
now: 'اکنون',
|
7
|
+
backToToday: 'بازگشت به روز',
|
8
|
+
ok: 'باشه',
|
9
|
+
clear: 'پاک کردن',
|
10
|
+
month: 'ماه',
|
11
|
+
year: 'سال',
|
12
|
+
timeSelect: 'انتخاب زمان',
|
13
|
+
dateSelect: 'انتخاب تاریخ',
|
14
|
+
monthSelect: 'یک ماه را انتخاب کنید',
|
15
|
+
yearSelect: 'یک سال را انتخاب کنید',
|
16
|
+
decadeSelect: 'یک دهه را انتخاب کنید',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'M/D/YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'M/D/YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'ماه قبل (PageUp)',
|
23
|
+
nextMonth: 'ماه بعد (PageDown)',
|
24
|
+
previousYear: 'سال قبل (Control + left)',
|
25
|
+
nextYear: 'سال بعد (Control + right)',
|
26
|
+
previousDecade: 'دهه قبل',
|
27
|
+
nextDecade: 'دهه بعد',
|
28
|
+
previousCentury: 'قرن قبل',
|
29
|
+
nextCentury: 'قرن بعد'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Tänään',
|
6
|
+
now: 'Nyt',
|
7
|
+
backToToday: 'Tämä päivä',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Tyhjennä',
|
10
|
+
month: 'Kuukausi',
|
11
|
+
year: 'Vuosi',
|
12
|
+
timeSelect: 'Valise aika',
|
13
|
+
dateSelect: 'Valitse päivä',
|
14
|
+
monthSelect: 'Valitse kuukausi',
|
15
|
+
yearSelect: 'Valitse vuosi',
|
16
|
+
decadeSelect: 'Valitse vuosikymmen',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D.M.YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D.M.YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Edellinen kuukausi (PageUp)',
|
23
|
+
nextMonth: 'Seuraava kuukausi (PageDown)',
|
24
|
+
previousYear: 'Edellinen vuosi (Control + left)',
|
25
|
+
nextYear: 'Seuraava vuosi (Control + right)',
|
26
|
+
previousDecade: 'Edellinen vuosikymmen',
|
27
|
+
nextDecade: 'Seuraava vuosikymmen',
|
28
|
+
previousCentury: 'Edellinen vuosisata',
|
29
|
+
nextCentury: 'Seuraava vuosisata'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Aujourd\'hui',
|
6
|
+
now: 'Maintenant',
|
7
|
+
backToToday: 'Aujourd\'hui',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Rétablir',
|
10
|
+
month: 'Mois',
|
11
|
+
year: 'Année',
|
12
|
+
timeSelect: 'Sélectionner l\'heure',
|
13
|
+
dateSelect: 'Sélectionner l\'heure',
|
14
|
+
monthSelect: 'Choisissez un mois',
|
15
|
+
yearSelect: 'Choisissez une année',
|
16
|
+
decadeSelect: 'Choisissez une décennie',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D/M/YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Mois précédent (PageUp)',
|
23
|
+
nextMonth: 'Mois suivant (PageDown)',
|
24
|
+
previousYear: 'Année précédente (Ctrl + gauche)',
|
25
|
+
nextYear: 'Année prochaine (Ctrl + droite)',
|
26
|
+
previousDecade: 'Décennie précédente',
|
27
|
+
nextDecade: 'Décennie suivante',
|
28
|
+
previousCentury: 'Siècle précédent',
|
29
|
+
nextCentury: 'Siècle suivant'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|