Revision tags: release/14.0.0, release/13.2.0, release/12.4.0, release/13.1.0, release/12.3.0, release/13.0.0, release/12.2.0, release/11.4.0, release/12.1.0, release/11.3.0 |
|
#
e532a999 |
| 20-Jun-2019 |
Alan Somers <asomers@FreeBSD.org> |
MFHead @349234
Sponsored by: The FreeBSD Foundation
|
#
99b6ccd8 |
| 20-Jun-2019 |
Li-Wen Hsu <lwhsu@FreeBSD.org> |
Finsh readding Big5 in r317204, which was reverting r315568. This commit reverts r315569.
Reported by: Ting-Wei Lan <lantw44 gmail com> Discussed with: kevlo MFC after: 3 days Sponsored by: The Fre
Finsh readding Big5 in r317204, which was reverting r315568. This commit reverts r315569.
Reported by: Ting-Wei Lan <lantw44 gmail com> Discussed with: kevlo MFC after: 3 days Sponsored by: The FreeBSD Foundation
show more ...
|
Revision tags: release/12.0.0, release/11.2.0, release/10.4.0, release/11.1.0, release/11.0.1, release/11.0.0 |
|
#
637cce3a |
| 03-Sep-2016 |
Enji Cooper <ngie@FreeBSD.org> |
MFhead @ r305314
|
#
2aeb0380 |
| 02-Sep-2016 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r305220 through r305300.
|
#
3c028343 |
| 02-Sep-2016 |
Kevin Lo <kevlo@FreeBSD.org> |
Revert r304192 to fix short month names and replace %b with %_m in date_fmt for Chinese locales.
As mentioned in the commit message of r289041, nl_langinfo(ABMON_*) only returned numbers when using
Revert r304192 to fix short month names and replace %b with %_m in date_fmt for Chinese locales.
As mentioned in the commit message of r289041, nl_langinfo(ABMON_*) only returned numbers when using a Chinese locale, this causes problems in applications that put the short month name and the day of the month together.
Spotted by: Ting-Wei Lan <lantw44 gmail com>
show more ...
|
#
27067774 |
| 16-Aug-2016 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r303250 through r304235.
|
#
532c3cde |
| 16-Aug-2016 |
Enji Cooper <ngie@FreeBSD.org> |
MFhead @ r304232
|
#
bb3860fb |
| 16-Aug-2016 |
Jung-uk Kim <jkim@FreeBSD.org> |
Fix ko_KR, zh_CN, zh_HK, and zh_TW locales. r304045 did not fully revert date/time formats for these locales.
|
#
f76e5f20 |
| 14-Aug-2016 |
Enji Cooper <ngie@FreeBSD.org> |
MFhead @ r304061
|
#
21725bc7 |
| 13-Aug-2016 |
Baptiste Daroussin <bapt@FreeBSD.org> |
Set date and time formats back to what they were before CLDR
While CLDR brings us a good and up to date source data to generate locales for all databses we are using for locales, it is not the case
Set date and time formats back to what they were before CLDR
While CLDR brings us a good and up to date source data to generate locales for all databses we are using for locales, it is not the case of LC_TIME. Where it does not defines the informations we need.
Put back all the date and time formats from the old locales. Make it statically for now (in order to be able to merge it now into 11.0-RELEASE). The generation tools will be updated soon.
That gives us time to properly work on LC_TIME during the 12 timeframe.
While here fix abbreviated month for af_ZA (which are already fixed in CLDR data upstream)
In locales where AP/PM was not defined before CLDR data, remove again the AP/PM informations
For locales where AP/PM was defined before CLDR data, keep the CLDR information which was properly translated.
MFC after: 3 days
show more ...
|
#
a7c6b160 |
| 27-Jul-2016 |
Kevin Lo <kevlo@FreeBSD.org> |
Regenerate timedef for zh_TW.
Reviewed by: bapt
|
#
3cf6509d |
| 03-Jul-2016 |
Baptiste Daroussin <bapt@FreeBSD.org> |
Posixify the locales name for variants
For all locales with variants: - if no ambiguity on the locale (only one variant) just use the regular name - if ambiguity, pick one as default and append @<va
Posixify the locales name for variants
For all locales with variants: - if no ambiguity on the locale (only one variant) just use the regular name - if ambiguity, pick one as default and append @<variant> to the others respecting POSIX
As a result: - All the 3 components locales added recently are renamed to the usual 2 components version for all but sr_RS.UTF-8 - Set sr_RS.UTF-8 to the cyrillic variant - Add sr_RS.UTF-8@latin - Remove the symlinks aliases they were created to represent the 2 components version as aliasas and are now useless - Update the OptionalObsoleteFiles.inc and ObsoleteFiles.inc to reflect those changes
Discussed with: ache@ Approved by: re@ (gjb)
show more ...
|
Revision tags: release/10.3.0 |
|
#
11d38a57 |
| 28-Oct-2015 |
Baptiste Daroussin <bapt@FreeBSD.org> |
Merge from head
Sponsored by: Gandi.net
|
#
a997b777 |
| 13-Oct-2015 |
Navdeep Parhar <np@FreeBSD.org> |
Sync up with head up to r289211.
|
#
9be27fdc |
| 10-Oct-2015 |
Baptiste Daroussin <bapt@FreeBSD.org> |
Merge from head
|
#
24824e97 |
| 08-Oct-2015 |
Xin LI <delphij@FreeBSD.org> |
Fix short month names and replace %b with %_m in date_fmt for Chinese locales.
When using a Chinese locale, such as zh_TW.UTF-8 or zh_CN.UTF-8, nl_langinfo(ABMON_*) only returned numbers. For insta
Fix short month names and replace %b with %_m in date_fmt for Chinese locales.
When using a Chinese locale, such as zh_TW.UTF-8 or zh_CN.UTF-8, nl_langinfo(ABMON_*) only returned numbers. For instance, nl_langinfo(ABMON_1) returns 1, nl_langinfo(ABMON_2) returns 2, and so on.
This causes problems in applications that put the short month name and the day of the month together. For example, 'Apr 14' in English becomes '414日' in Chinese on the top bar of GNOME Shell.
This problem may be resolved by appending '月' to all short month names and replacing %b with %_m in date_fmt. ja_JP.UTF-8 already does this, and this matches the en_US.ISO8859-1 behavior, which returns 'Oct'. The GNU C Library also returns values with '月' appended.
PR: 199441 Submitted by: Ting-Wei Lan <lantw44 gmail com> MFC after: 2 weeks
show more ...
|
Revision tags: release/10.2.0, release/10.1.0, release/9.3.0, release/10.0.0, release/9.2.0, release/8.4.0, release/9.1.0, release/8.3.0_cvs, release/8.3.0, release/9.0.0, release/7.4.0_cvs, release/8.2.0_cvs, release/7.4.0, release/8.2.0, release/8.1.0_cvs, release/8.1.0, release/7.3.0_cvs, release/7.3.0, release/8.0.0_cvs, release/8.0.0, release/7.2.0_cvs, release/7.2.0, release/7.1.0_cvs, release/7.1.0, release/6.4.0_cvs, release/6.4.0, release/7.0.0_cvs, release/7.0.0, release/6.3.0_cvs, release/6.3.0 |
|
#
79386ec7 |
| 30-Dec-2007 |
Andrey A. Chernov <ache@FreeBSD.org> |
Comments fixing 1) Back out "month names" -> "months names" and fix few such cases which are wrong initially 2) "weekdays names" -> "weekday names"
Noted by: des [1]
|
#
27cb7434 |
| 29-Dec-2007 |
Andrey A. Chernov <ache@FreeBSD.org> |
Comments fixing "month names" -> "months names" typo "Long months names (alternative)" or "in alternative form" -> "(without case ending)" "Long months names" -> "Long months names (as in a date)
Comments fixing "month names" -> "months names" typo "Long months names (alternative)" or "in alternative form" -> "(without case ending)" "Long months names" -> "Long months names (as in a date)" to not confuse developers on what purpose those sections are
show more ...
|
Revision tags: release/6.2.0_cvs, release/6.2.0, release/5.5.0_cvs, release/5.5.0, release/6.1.0_cvs, release/6.1.0, release/6.0.0_cvs, release/6.0.0, release/5.4.0_cvs, release/5.4.0, release/4.11.0_cvs, release/4.11.0, release/5.3.0_cvs, release/5.3.0, release/4.10.0_cvs, release/4.10.0, release/5.2.1_cvs, release/5.2.1, release/5.2.0_cvs, release/5.2.0, release/4.9.0_cvs, release/4.9.0, release/5.1.0_cvs, release/5.1.0, release/4.8.0_cvs, release/4.8.0, release/5.0.0_cvs, release/5.0.0, release/4.7.0_cvs, release/4.6.2_cvs, release/4.6.2, release/4.6.1, release/4.6.0_cvs, release/4.5.0_cvs, release/4.4.0_cvs, release/4.3.0_cvs, release/4.3.0 |
|
#
eb17d7b3 |
| 22-Mar-2001 |
Andrey A. Chernov <ache@FreeBSD.org> |
Add padding for some short names to make their length the same to not break colums
|
#
3b690f89 |
| 21-Mar-2001 |
Andrey A. Chernov <ache@FreeBSD.org> |
Remove fixed length restrictions and padding
|
#
e81765cb |
| 21-Mar-2001 |
Andrey A. Chernov <ache@FreeBSD.org> |
Replace %y with %Y
|
#
5f071dad |
| 18-Mar-2001 |
Andrey A. Chernov <ache@FreeBSD.org> |
Convert to new locale format with md_order and without E[Ff]_fmt Add ampm_fmt to all locales
|
Revision tags: release/4.2.0, release/4.1.1_cvs, release/4.1.0, release/3.5.0_cvs |
|
#
3402568c |
| 21-Jun-2000 |
Andrey A. Chernov <ache@FreeBSD.org> |
Fix %EF
|
Revision tags: release/4.0.0_cvs, release/3.4.0_cvs |
|
#
9e99391d |
| 03-Dec-1999 |
Andrey A. Chernov <ache@FreeBSD.org> |
Don't use %E* in old fields for compatibility reasons
|
#
79dc5830 |
| 30-Nov-1999 |
Andrey A. Chernov <ache@FreeBSD.org> |
Convert after %Ex->%Ef and %EF adding
|