mirror of
https://github.com/wassname/fullcalendar.git
synced 2026-08-05 13:00:44 +08:00
29 lines
732 B
JavaScript
29 lines
732 B
JavaScript
|
|
describe('lang', function() {
|
|
|
|
/*
|
|
|
|
is not affected by global moment lang
|
|
|
|
doesn't affect the global moment lang when customized
|
|
|
|
defaults to english when configured to language that isn't loaded
|
|
|
|
|
|
### below should be tested for in specific setting files
|
|
|
|
is affected by the language's isRTL
|
|
uses the isRTL setting instead of the language's isRTL
|
|
|
|
is affected by the language's firstDay
|
|
uses the firstDay setting instead of the language's firstDay
|
|
|
|
computes the default columnFormat based on the language
|
|
uses the columnFormat setting instead of the language's columnFormat default
|
|
|
|
computes the default timeFormat based on the language
|
|
uses the timeFormat setting instead of the language's timeFormat default
|
|
|
|
*/
|
|
|
|
}); |