✨ MAJOR FEATURES: • Auto-zoom intelligence với smart bounds fitting • Enhanced 3D GPS markers với pulsing effects • Professional route display với 6-layer rendering • Status-based parking icons với availability indicators • Production-ready build optimizations 🗺️ AUTO-ZOOM FEATURES: • Smart bounds fitting cho GPS + selected parking • Adaptive padding (50px) cho visual balance • Max zoom control (level 16) để tránh quá gần • Dynamic centering khi không có selection 🎨 ENHANCED VISUALS: • 3D GPS marker với multi-layer pulse effects • Advanced parking icons với status colors • Selection highlighting với animation • Dimming system cho non-selected items 🛣️ ROUTE SYSTEM: • OpenRouteService API integration • Multi-layer route rendering (glow, shadow, main, animated) • Real-time distance & duration calculation • Visual route info trong popup 📱 PRODUCTION READY: • SSR safe với dynamic imports • Build errors resolved • Global deployment via Vercel • Optimized performance 🌍 DEPLOYMENT: • Vercel: https://whatever-ctk2auuxr-phong12hexdockworks-projects.vercel.app • Bundle size: 22.8 kB optimized • Global CDN distribution • HTTPS enabled 💾 VERSION CONTROL: • MapView-v2.0.tsx backup created • MAPVIEW_VERSIONS.md documentation • Full version history tracking
39 lines
1.2 KiB
JavaScript
39 lines
1.2 KiB
JavaScript
// Yoruba Nigeria [yo]
|
|
import dayjs from '../index';
|
|
var locale = {
|
|
name: 'yo',
|
|
weekdays: 'Àìkú_Ajé_Ìsẹ́gun_Ọjọ́rú_Ọjọ́bọ_Ẹtì_Àbámẹ́ta'.split('_'),
|
|
months: 'Sẹ́rẹ́_Èrèlè_Ẹrẹ̀nà_Ìgbé_Èbibi_Òkùdu_Agẹmo_Ògún_Owewe_Ọ̀wàrà_Bélú_Ọ̀pẹ̀̀'.split('_'),
|
|
weekStart: 1,
|
|
weekdaysShort: 'Àìk_Ajé_Ìsẹ́_Ọjr_Ọjb_Ẹtì_Àbá'.split('_'),
|
|
monthsShort: 'Sẹ́r_Èrl_Ẹrn_Ìgb_Èbi_Òkù_Agẹ_Ògú_Owe_Ọ̀wà_Bél_Ọ̀pẹ̀̀'.split('_'),
|
|
weekdaysMin: 'Àì_Aj_Ìs_Ọr_Ọb_Ẹt_Àb'.split('_'),
|
|
ordinal: function ordinal(n) {
|
|
return n;
|
|
},
|
|
formats: {
|
|
LT: 'h:mm A',
|
|
LTS: 'h:mm:ss A',
|
|
L: 'DD/MM/YYYY',
|
|
LL: 'D MMMM YYYY',
|
|
LLL: 'D MMMM YYYY h:mm A',
|
|
LLLL: 'dddd, D MMMM YYYY h:mm A'
|
|
},
|
|
relativeTime: {
|
|
future: 'ní %s',
|
|
past: '%s kọjá',
|
|
s: 'ìsẹjú aayá die',
|
|
m: 'ìsẹjú kan',
|
|
mm: 'ìsẹjú %d',
|
|
h: 'wákati kan',
|
|
hh: 'wákati %d',
|
|
d: 'ọjọ́ kan',
|
|
dd: 'ọjọ́ %d',
|
|
M: 'osù kan',
|
|
MM: 'osù %d',
|
|
y: 'ọdún kan',
|
|
yy: 'ọdún %d'
|
|
}
|
|
};
|
|
dayjs.locale(locale, null, true);
|
|
export default locale; |