Skip to content

Commit 3c08c88

Browse files
authored
Merge pull request react-toolbox#951 from apinnecke/dev
Adds german settings to time utils
2 parents 39ae666 + adf3567 commit 3c08c88

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

components/date_picker/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ If you want to provide a theme via context, the component key is `RTDatePicker`.
5252
| `inputClassName`| `String` | | This class will be applied to `Input` component of `DatePicker`. |
5353
| `inputFormat` | `Function` | | Function to format the date displayed on the input. |
5454
| `label` | `String` | | The text string to use for the floating label element in the input component.|
55-
| `locale` | `String` or `Object` | `'en'` | Set the locale for the date picker dialog ('en','es','af','ar','be','bg','bn','bo','br','bs','ca','gl','eu','pt','it',fr'). Object is supported too (see example above). |
55+
| `locale` | `String` or `Object` | `'en'` | Set the locale for the date picker dialog ('de','en','es','af','ar','be','bg','bn','bo','br','bs','ca','gl','eu','pt','it',fr'). Object is supported too (see example above). |
5656
| `maxDate` | `Date` | | Date object with the maximum selectable date. |
5757
| `minDate` | `Date` | | Date object with the minimum selectable date. |
5858
| `onChange` | `Function` | | Callback called when the picker value is changed.|

components/utils/time.js

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
const dateLocales = {
2+
de: {
3+
months: 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'),
4+
monthsShort: 'Jan_Feb_März_Apr_Mai_Juni_Juli_Aug_Sept_Okt_Nov_Dez'.split('_'),
5+
weekdays: 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split('_'),
6+
weekdaysShort: 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
7+
weekdaysLetter: 'S_M_D_M_D_F_S'.split('_')
8+
},
29
en: {
310
months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),
411
monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),

0 commit comments

Comments
 (0)