supplier improvements
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
$.datepicker.regional.en = {
|
||||
closeText: "Done", // Display text for close link
|
||||
prevText: "Prev", // Display text for previous month link
|
||||
nextText: "Next", // Display text for next month link
|
||||
currentText: "Today", // Display text for current month link
|
||||
monthNames: ["January","February","March","April","May","June",
|
||||
"July","August","September","October","November","December"], // Names of months for drop-down and formatting
|
||||
monthNamesShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], // For formatting
|
||||
dayNames: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], // For formatting
|
||||
dayNamesShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], // For formatting
|
||||
dayNamesMin: ["Su","Mo","Tu","We","Th","Fr","Sa"], // Column headings for days starting at Sunday
|
||||
weekHeader: "Wk", // Column header for week of the year
|
||||
isRTL: false, // True if right-to-left language, false if left-to-right
|
||||
showMonthAfterYear: false, // True if the year select precedes month, false for month then year
|
||||
yearSuffix: "" // Additional text to append to the year in the month headers
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* Dutch (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Mathias Bynens <http://mathiasbynens.be/> */
|
||||
$.datepicker.regional.nl = {
|
||||
closeText: 'Sluiten',
|
||||
prevText: '←',
|
||||
nextText: '→',
|
||||
currentText: 'Vandaag',
|
||||
monthNames: ['januari', 'februari', 'maart', 'april', 'mei', 'juni',
|
||||
'juli', 'augustus', 'september', 'oktober', 'november', 'december'],
|
||||
monthNamesShort: ['jan', 'feb', 'mrt', 'apr', 'mei', 'jun',
|
||||
'jul', 'aug', 'sep', 'okt', 'nov', 'dec'],
|
||||
dayNames: ['zondag', 'maandag', 'dinsdag', 'woensdag', 'donderdag', 'vrijdag', 'zaterdag'],
|
||||
dayNamesShort: ['zon', 'maa', 'din', 'woe', 'don', 'vri', 'zat'],
|
||||
dayNamesMin: ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'],
|
||||
weekHeader: 'Wk',
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: ''};
|
||||
Reference in New Issue
Block a user