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.
38 lines
1.9 KiB
JavaScript
38 lines
1.9 KiB
JavaScript
// Tamil [ta]
|
|
import dayjs from '../index';
|
|
var locale = {
|
|
name: 'ta',
|
|
weekdays: 'ஞாயிற்றுக்கிழமை_திங்கட்கிழமை_செவ்வாய்கிழமை_புதன்கிழமை_வியாழக்கிழமை_வெள்ளிக்கிழமை_சனிக்கிழமை'.split('_'),
|
|
months: 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split('_'),
|
|
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 ஆண்டுகள்'
|
|
}
|
|
};
|
|
dayjs.locale(locale, null, true);
|
|
export default locale; |