diff options
author | Horus68 <pauloizidoro@gmail.com> | 2017-05-31 15:53:30 +0100 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2017-05-31 11:10:41 -0400 |
commit | 6fdd0e34a74789d2da214739ea0f5a8feff71d7e (patch) | |
tree | 13212f523889c1c7c77af337f5a4781b06bb742e | |
parent | 5708046ea1ba4d6d86f431ec9fd32d28ae7542f6 (diff) | |
download | jquery-ui-6fdd0e34a74789d2da214739ea0f5a8feff71d7e.tar.gz jquery-ui-6fdd0e34a74789d2da214739ea0f5a8feff71d7e.zip |
Datepicker: Fix first day of week for pt-PT locale
Fixes #15195
Closes gh-1820
-rw-r--r-- | ui/i18n/datepicker-pt.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/i18n/datepicker-pt.js b/ui/i18n/datepicker-pt.js index b1afd7b3d..5ddd0c636 100644 --- a/ui/i18n/datepicker-pt.js +++ b/ui/i18n/datepicker-pt.js @@ -33,7 +33,7 @@ datepicker.regional.pt = { dayNamesMin: [ "Dom","Seg","Ter","Qua","Qui","Sex","Sáb" ], weekHeader: "Sem", dateFormat: "dd/mm/yy", - firstDay: 0, + firstDay: 1, isRTL: false, showMonthAfterYear: false, yearSuffix: "" }; |