i18n.locales¶
webix.i18n.
locales
([see official doc])¶webix.i18n.locales helper.
Please look into the linked official documentation.
External references¶
Code¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | webix.i18n.locales={};
webix.i18n.locales["en-US"]={
groupDelimiter:",",
groupSize:3,
decimalDelimiter:".",
decimalSize:2,
dateFormat:"%m/%d/%Y",
timeFormat:"%h:%i %A",
longDateFormat:"%d %F %Y",
fullDateFormat:"%m/%d/%Y %h:%i %A",
am:["am","AM"],
pm:["pm","PM"],
price:"${obj}",
priceSettings:{
groupDelimiter:",",
groupSize:3,
decimalDelimiter:".",
decimalSize:2
},
fileSize: ["b","Kb","Mb","Gb","Tb","Pb","Eb"],
calendar: {
monthFull:["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
monthShort:["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
dayFull:["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
dayShort:["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"],
hours: "Hours",
minutes: "Minutes",
done:"Done",
clear: "Clear",
today: "Today"
},
controls:{
select:"Select",
invalidMessage: "Invalid input value"
},
dataExport:{
page:"Page",
of:"of"
},
PDFviewer:{
of:"of",
automaticZoom:"Automatic Zoom",
actualSize:"Actual Size",
pageFit:"Page Fit",
pageWidth:"Page Width",
pageHeight:"Page Height"
},
aria:{
calendar:"Calendar",
increaseValue:"Increase value",
decreaseValue:"Decrease value",
navMonth:["Previous month", "Next month"],
navYear:["Previous year", "Next year"],
navDecade:["Previous decade", "Next decade"],
dateFormat:"%d %F %Y",
monthFormat:"%F %Y",
yearFormat:"%Y",
hourFormat:"Hours: %h %A",
minuteFormat:"Minutes: %i",
removeItem:"Remove item",
pages:["First page", "Previous page", "Next page", "Last page"],
page:"Page",
headermenu:"Header menu",
openGroup:"Open column group",
closeGroup:"Close column group",
closeTab:"Close tab",
showTabs:"Show more tabs",
resetTreeMap:"Reset tree map",
navTreeMap:"Level up",
nextTab:"Next tab",
prevTab:"Previous tab",
multitextSection:"Add section",
multitextextraSection:"Remove section",
showChart:"Show chart",
hideChart:"Hide chart",
resizeChart:"Resize chart"
},
richtext:{
underline: "Underline",
bold: "Bold",
italic: "Italic"
}
};
webix.i18n.setLocale("en-US");
|