Skip to content

Commit

Permalink
feat(datepicker): change Thai 'weekdaysShort' format for look better …
Browse files Browse the repository at this point in the history
…in datepicker (#4674)
  • Loading branch information
tumit authored and Domainv committed Apr 24, 2019
1 parent 112ca44 commit 77ccc37
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/chronos/i18n/th.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const thLocale: LocaleData = {
monthsShort: 'ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.'.split('_'),
monthsParseExact: true,
weekdays: 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์'.split('_'),
weekdaysShort: 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์'.split('_'), // yes, three characters difference
weekdaysShort: 'อา._จ._อ._พ._พฤ._ศ._ส.'.split('_'), // yes, three characters difference
weekdaysMin: 'อา._จ._อ._พ._พฤ._ศ._ส.'.split('_'),
weekdaysParseExact: true,
longDateFormat: {
Expand Down
8 changes: 4 additions & 4 deletions src/chronos/test/locale/th.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ describe('locale: th', () => {
it('format', function () {
var a = [
['dddd, Do MMMM YYYY, h:mm:ss a', 'อาทิตย์, 14 กุมภาพันธ์ 2010, 3:25:50 หลังเที่ยง'],
['ddd, h A', 'อาทิตย์, 3 หลังเที่ยง'],
['ddd, h A', 'อา., 3 หลังเที่ยง'],
['M Mo MM MMMM MMM', '2 2 02 กุมภาพันธ์ ก.พ.'],
['YYYY YY', '2010 10'],
['D Do DD', '14 14 14'],
['d do dddd ddd dd', '0 0 อาทิตย์ อาทิตย์ อา.'],
['d do dddd ddd dd', '0 0 อาทิตย์ อา. อา.'],
['DDD DDDo DDDD', '45 45 045'],
['w wo ww', '8 8 08'],
['h hh', '3 03'],
Expand All @@ -61,7 +61,7 @@ describe('locale: th', () => {
['l', '14/2/2010'],
['ll', '14 ก.พ. 2010'],
['lll', '14 ก.พ. 2010 เวลา 15:25'],
['llll', 'วันอาทิตย์ที่ 14 ก.พ. 2010 เวลา 15:25']
['llll', 'วันอา.ที่ 14 ก.พ. 2010 เวลา 15:25']
],
b = moment(new Date(2010, 1, 14, 15, 25, 50, 125)),
i;
Expand All @@ -79,7 +79,7 @@ describe('locale: th', () => {
});

it('format week', function () {
var expected = 'อาทิตย์ อาทิตย์ อา._จันทร์ จันทร์ จ._อังคาร อังคาร อ._พุธ พุธ พ._พฤหัสบดี พฤหัส พฤ._ศุกร์ ศุกร์ ศ._เสาร์ เสาร์ ส.'.split('_'),
var expected = 'อาทิตย์ อา. อา._จันทร์ จ. จ._อังคาร อ. อ._พุธ พ. พ._พฤหัสบดี พฤ. พฤ._ศุกร์ ศ. ศ._เสาร์ ส. ส.'.split('_'),
i;
for (i = 0; i < expected.length; i++) {
assertEq(moment([2011, 0, 2 + i]).format('dddd ddd dd'), expected[i], expected[i]);
Expand Down

0 comments on commit 77ccc37

Please sign in to comment.