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.
39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
// Galician [gl]
|
|
import dayjs from '../index';
|
|
var locale = {
|
|
name: 'gl',
|
|
weekdays: 'domingo_luns_martes_mércores_xoves_venres_sábado'.split('_'),
|
|
months: 'xaneiro_febreiro_marzo_abril_maio_xuño_xullo_agosto_setembro_outubro_novembro_decembro'.split('_'),
|
|
weekStart: 1,
|
|
weekdaysShort: 'dom._lun._mar._mér._xov._ven._sáb.'.split('_'),
|
|
monthsShort: 'xan._feb._mar._abr._mai._xuñ._xul._ago._set._out._nov._dec.'.split('_'),
|
|
weekdaysMin: 'do_lu_ma_mé_xo_ve_sá'.split('_'),
|
|
ordinal: function ordinal(n) {
|
|
return n + "\xBA";
|
|
},
|
|
formats: {
|
|
LT: 'H:mm',
|
|
LTS: 'H:mm:ss',
|
|
L: 'DD/MM/YYYY',
|
|
LL: 'D [de] MMMM [de] YYYY',
|
|
LLL: 'D [de] MMMM [de] YYYY H:mm',
|
|
LLLL: 'dddd, D [de] MMMM [de] YYYY H:mm'
|
|
},
|
|
relativeTime: {
|
|
future: 'en %s',
|
|
past: 'fai %s',
|
|
s: 'uns segundos',
|
|
m: 'un minuto',
|
|
mm: '%d minutos',
|
|
h: 'unha hora',
|
|
hh: '%d horas',
|
|
d: 'un día',
|
|
dd: '%d días',
|
|
M: 'un mes',
|
|
MM: '%d meses',
|
|
y: 'un ano',
|
|
yy: '%d anos'
|
|
}
|
|
};
|
|
dayjs.locale(locale, null, true);
|
|
export default locale; |