From afe9eb0f65fe86c1505ceab8750a054a35d79b5f Mon Sep 17 00:00:00 2001 From: Horus68 Date: Wed, 31 May 2017 15:53:30 +0100 Subject: [PATCH] Making Monday first day of the week In Portugal the first day of the week is Monday, so firstDay: 1 not 0 (Sunday) Also in the international standard ISO 8601 --- ui/i18n/datepicker-pt.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/i18n/datepicker-pt.js b/ui/i18n/datepicker-pt.js index b1afd7b3d05..5ddd0c63611 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: "" };