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
|
import QtQuick 2.0
QtObject {
property var locale: Qt.locale()
function setLocale(l) {
locale = Qt.locale(l)
}
function currencySymbol(type) {
if (type < 0)
return locale.currencySymbol()
else
return locale.currencySymbol(type)
}
function monthName(month,type) {
if (type < 0)
return locale.monthName(month)
else
return locale.monthName(month, type)
}
function standaloneMonthName(month,type) {
if (type < 0)
return locale.standaloneMonthName(month)
else
return locale.standaloneMonthName(month, type)
}
function dayName(month,type) {
if (type < 0)
return locale.dayName(month)
else
return locale.dayName(month, type)
}
function standaloneDayName(month,type) {
if (type < 0)
return locale.standaloneDayName(month)
else
return locale.standaloneDayName(month, type)
}
function dateTimeFormat(fmt) {
if (fmt < 0)
return locale.dateTimeFormat()
else
return locale.dateTimeFormat(fmt)
}
function dateFormat(fmt) {
if (fmt < 0)
return locale.dateFormat()
else
return locale.dateFormat(fmt)
}
function timeFormat(fmt) {
if (fmt < 0)
return locale.timeFormat()
else
return locale.timeFormat(fmt)
}
}
|