Elaborate shortDayName(), etc using default locale.

QDate::toString() should explain QDate::shortDayName() and
QDate::shortMonthName() will be localized name using the
default locale from the system.

Task-number: QTBUG-28522
Change-Id: I027a72773b5772bf00344f14a4b522e41c9e63db
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
Leonard Lee 2012-12-12 15:29:02 +01:00 committed by The Qt Project
parent b6250913be
commit 4cf112b641

View File

@ -549,8 +549,8 @@ int QDate::weekNumber(int *yearNumber) const
\li 12 = "Dec" \li 12 = "Dec"
\endlist \endlist
The month names will be localized according to the system's locale The month names will be localized according to the system's default
settings. locale settings.
Returns an empty string if the date is invalid. Returns an empty string if the date is invalid.
@ -596,8 +596,8 @@ QString QDate::shortMonthName(int month, QDate::MonthNameType type)
\li 12 = "December" \li 12 = "December"
\endlist \endlist
The month names will be localized according to the system's locale The month names will be localized according to the system's default
settings. locale settings.
Returns an empty string if the date is invalid. Returns an empty string if the date is invalid.
@ -638,8 +638,8 @@ QString QDate::longMonthName(int month, MonthNameType type)
\li 7 = "Sun" \li 7 = "Sun"
\endlist \endlist
The day names will be localized according to the system's locale The day names will be localized according to the system's default
settings. locale settings.
Returns an empty string if the date is invalid. Returns an empty string if the date is invalid.
@ -680,8 +680,8 @@ QString QDate::shortDayName(int weekday, MonthNameType type)
\li 7 = "Sunday" \li 7 = "Sunday"
\endlist \endlist
The day names will be localized according to the system's locale The day names will be localized according to the system's default
settings. locale settings.
Returns an empty string if the date is invalid. Returns an empty string if the date is invalid.
@ -718,8 +718,8 @@ QString QDate::longDayName(int weekday, MonthNameType type)
If the \a format is Qt::TextDate, the string is formatted in If the \a format is Qt::TextDate, the string is formatted in
the default way. QDate::shortDayName() and QDate::shortMonthName() the default way. QDate::shortDayName() and QDate::shortMonthName()
are used to generate the string, so the day and month names will are used to generate the string, so the day and month names will
be localized names. An example of this formatting is be localized names using the default locale from the system. An
"Sat May 20 1995". example of this formatting is "Sat May 20 1995".
If the \a format is Qt::ISODate, the string format corresponds If the \a format is Qt::ISODate, the string format corresponds
to the ISO 8601 extended specification for representations of to the ISO 8601 extended specification for representations of