- App.tsx: full navigation (Auth stack + Main tabs with 5 screens) - Auth: LoginScreen, RegisterScreen, ForgotPasswordScreen - HomeScreen: dashboard with IoT metrics, weather widget, alerts, quick actions, sensors - MapScreen: interactive map with layer toggles (6 layers) - MarketplaceScreen: categories (6), products (5), search - ChatScreen: AI chat with quick prompts (4), bot responses - ProfileScreen: user info, stats, menu (9 items), logout - AlertsScreen: alert list with severity, acknowledge - SensorsScreen: sensor list with type filters (6 types), search - ZonesScreen: zone cards with stats - SettingsScreen: language picker (FR/EN/ES/DE), privacy, about - Stores: iotStore (sensors, zones, alerts), notificationStore, uiStore + i18n - Hooks: useSensors, useAlerts, useNotifications, useLocation - Components: Card, Button, LoadingSpinner, ErrorBoundary, Header - Services: iotService, notificationService (with axios API client) - Utils: formatters (temp, AQI, noise, dates), validators (email, password, IBAN) - Theme: colors.ts with full design system (Blue Ocean palette) - Ditto: fixed MongoDB connection, new JWT secrets, official gateway image
43 lines
1.2 KiB
JavaScript
43 lines
1.2 KiB
JavaScript
// Basque [eu]
|
|
import dayjs from '../index';
|
|
var locale = {
|
|
name: 'eu',
|
|
weekdays: 'igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata'.split('_'),
|
|
months: 'urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua'.split('_'),
|
|
weekStart: 1,
|
|
weekdaysShort: 'ig._al._ar._az._og._ol._lr.'.split('_'),
|
|
monthsShort: 'urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.'.split('_'),
|
|
weekdaysMin: 'ig_al_ar_az_og_ol_lr'.split('_'),
|
|
ordinal: function ordinal(n) {
|
|
return n;
|
|
},
|
|
formats: {
|
|
LT: 'HH:mm',
|
|
LTS: 'HH:mm:ss',
|
|
L: 'YYYY-MM-DD',
|
|
LL: 'YYYY[ko] MMMM[ren] D[a]',
|
|
LLL: 'YYYY[ko] MMMM[ren] D[a] HH:mm',
|
|
LLLL: 'dddd, YYYY[ko] MMMM[ren] D[a] HH:mm',
|
|
l: 'YYYY-M-D',
|
|
ll: 'YYYY[ko] MMM D[a]',
|
|
lll: 'YYYY[ko] MMM D[a] HH:mm',
|
|
llll: 'ddd, YYYY[ko] MMM D[a] HH:mm'
|
|
},
|
|
relativeTime: {
|
|
future: '%s barru',
|
|
past: 'duela %s',
|
|
s: 'segundo batzuk',
|
|
m: 'minutu bat',
|
|
mm: '%d minutu',
|
|
h: 'ordu bat',
|
|
hh: '%d ordu',
|
|
d: 'egun bat',
|
|
dd: '%d egun',
|
|
M: 'hilabete bat',
|
|
MM: '%d hilabete',
|
|
y: 'urte bat',
|
|
yy: '%d urte'
|
|
}
|
|
};
|
|
dayjs.locale(locale, null, true);
|
|
export default locale; |