mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Datepicker: Use Globalize 1.0.0
- Remove unneeded territory DE from de-DE locale;
This commit is contained in:
parent
d0a5a7a0e6
commit
b39bb7250e
@ -116,14 +116,14 @@ test( "Localization", function() {
|
||||
);
|
||||
};
|
||||
|
||||
Globalize.locale( "de-DE" );
|
||||
Globalize.locale( "de" );
|
||||
initCalendar();
|
||||
testLocalization( "Init: " );
|
||||
element.calendar( "destroy" );
|
||||
|
||||
Globalize.locale( defaultLocale.locale );
|
||||
initCalendar();
|
||||
Globalize.locale( "de-DE" );
|
||||
Globalize.locale( "de" );
|
||||
element.calendar( "refresh" );
|
||||
testLocalization( "After init: " );
|
||||
|
||||
|
@ -89,7 +89,7 @@ test( "List days of Week", 2, function() {
|
||||
];
|
||||
|
||||
deepEqual( date.weekdays(), offset0, "Get weekdays with start of day on 0 (English)" );
|
||||
Globalize.locale( "de-DE" );
|
||||
Globalize.locale( "de" );
|
||||
deepEqual( date.weekdays(), offset1, "Get weekdays with start of day on 1 (Germany)" );
|
||||
|
||||
// Revert Globalize changes back to English
|
||||
@ -119,7 +119,7 @@ test( "Days in Month", 3, function() {
|
||||
test( "Month Name", 2, function() {
|
||||
var date = $.date();
|
||||
equal( date.setMonth( 3 ).monthName(), "April", "Month name return April (English)" );
|
||||
Globalize.locale( "de-DE" );
|
||||
Globalize.locale( "de" );
|
||||
equal( date.setMonth( 2 ).monthName(), "März", "Month name return March (German)" );
|
||||
Globalize.locale( "en" );
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user