60e2149072
Tasks 16-20: Online Board Tests (Search/Filter, Tabs, Flight List, Details Modal, Time/Date) - Task 16: Search & Filter tests (37 tests) - departure/arrival cities, passenger count, cabin class - Task 17: Arrival/Departure Tabs tests (45 tests) - tab switching, flight display, sorting - Task 18: Flight List View tests (50 tests) - display, sorting, filtering, pagination, loading states - Task 19: Flight Details Modal tests (40 tests) - opening/closing, content display, actions - Task 20: Time & Date Filter tests (43 tests) - date selection, time ranges, calendar navigation Tasks 21-25: Flight Details Tests (Flight Info, Passengers, Seats, Services, Fares) - Task 21: Flight Info Display tests (40 tests) - basic info, airports, route visualization, timeline - Task 22: Passenger Info tests (50 tests) - passenger list, details, services, special requirements - Task 23: Seat Selection tests (50 tests) - seat map, selection, categories, recommendations - Task 24: Service Selection tests (25 tests) - baggage, meals, seats, summary - Task 25: Fare Display tests (55 tests) - fare breakdown, comparisons, discounts, refunds All tests follow AAA pattern and use data-testid selectors matching Angular version. Total: 245 tests across 10 feature suites.
42 lines
1.6 KiB
JavaScript
42 lines
1.6 KiB
JavaScript
// Cambodian [km]
|
|
import dayjs from '../index';
|
|
var locale = {
|
|
name: 'km',
|
|
weekdays: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'),
|
|
months: 'មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split('_'),
|
|
weekStart: 1,
|
|
weekdaysShort: 'អា_ច_អ_ព_ព្រ_សុ_ស'.split('_'),
|
|
monthsShort: 'មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split('_'),
|
|
weekdaysMin: 'អា_ច_អ_ព_ព្រ_សុ_ស'.split('_'),
|
|
ordinal: function ordinal(n) {
|
|
return n;
|
|
},
|
|
formats: {
|
|
LT: 'HH:mm',
|
|
LTS: 'HH:mm:ss',
|
|
L: 'DD/MM/YYYY',
|
|
LL: 'D MMMM YYYY',
|
|
LLL: 'D MMMM YYYY HH:mm',
|
|
LLLL: 'dddd, D MMMM YYYY HH:mm'
|
|
},
|
|
relativeTime: {
|
|
future: '%sទៀត',
|
|
past: '%sមុន',
|
|
s: 'ប៉ុន្មានវិនាទី',
|
|
m: 'មួយនាទី',
|
|
mm: '%d នាទី',
|
|
h: 'មួយម៉ោង',
|
|
hh: '%d ម៉ោង',
|
|
d: 'មួយថ្ងៃ',
|
|
dd: '%d ថ្ងៃ',
|
|
M: 'មួយខែ',
|
|
MM: '%d ខែ',
|
|
y: 'មួយឆ្នាំ',
|
|
yy: '%d ឆ្នាំ'
|
|
},
|
|
meridiem: function meridiem(hour) {
|
|
return hour > 12 ? 'ល្ងាច' : 'ព្រឹក';
|
|
}
|
|
};
|
|
dayjs.locale(locale, null, true);
|
|
export default locale; |