fullcalendar/docs/locale.txt

37 lines
965 B
Plaintext
Raw Normal View History

2009-09-14 00:25:49 +02:00
2009-09-14 05:36:27 +02:00
.. _locale:
2009-09-14 00:25:49 +02:00
2009-09-14 05:36:27 +02:00
Locale Options
==============
**firstDay**: Integer, *Default*: ``0``
The day-of-week each week begins. Sunday=0,
Monday=1 (for UK users), Tuesday=2, etc.
2009-09-14 00:25:49 +02:00
2009-09-14 05:36:27 +02:00
**isRTL**: Boolean, *Default*: ``false``
2009-09-14 00:25:49 +02:00
Displays the calendar right-to-left (for languages such as Arabic and Hebrew)
2009-09-14 05:36:27 +02:00
**monthNames**: Array, *Default*: ``['January','February','March'...``
2009-09-14 00:25:49 +02:00
Full names of months.
2009-09-14 05:36:27 +02:00
**monthNamesShort**: Array, *Default*: ``['Jan','Feb','Mar'...``
2009-09-14 00:25:49 +02:00
Abbreviated names of months.
2009-09-14 05:36:27 +02:00
**dayNames**: Array, *Default*: ``['Sunday','Monday','Tuesday'...``
2009-09-14 00:25:49 +02:00
Full names of days-of-week.
2009-09-14 05:36:27 +02:00
**dayNamesShort**: Array, *Default*: ``['Sun','Mon','Tue'...``
2009-09-14 00:25:49 +02:00
Abbreviated names of days-of-week.
2009-09-14 05:36:27 +02:00
**buttonText**: Object
Text that will be displayed on buttons of the header. Default::
2009-09-14 00:25:49 +02:00
{
2009-09-14 05:36:27 +02:00
prev: '◄', // left triangle
next: '►', // right triangle
2009-09-14 00:25:49 +02:00
today: 'today',
month: 'month',
week: 'week',
day: 'day'
}