- 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
39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
// Bambara [bm]
|
|
import dayjs from '../index';
|
|
var locale = {
|
|
name: 'bm',
|
|
weekdays: 'Kari_Ntɛnɛn_Tarata_Araba_Alamisa_Juma_Sibiri'.split('_'),
|
|
months: 'Zanwuyekalo_Fewuruyekalo_Marisikalo_Awirilikalo_Mɛkalo_Zuwɛnkalo_Zuluyekalo_Utikalo_Sɛtanburukalo_ɔkutɔburukalo_Nowanburukalo_Desanburukalo'.split('_'),
|
|
weekStart: 1,
|
|
weekdaysShort: 'Kar_Ntɛ_Tar_Ara_Ala_Jum_Sib'.split('_'),
|
|
monthsShort: 'Zan_Few_Mar_Awi_Mɛ_Zuw_Zul_Uti_Sɛt_ɔku_Now_Des'.split('_'),
|
|
weekdaysMin: 'Ka_Nt_Ta_Ar_Al_Ju_Si'.split('_'),
|
|
ordinal: function ordinal(n) {
|
|
return n;
|
|
},
|
|
formats: {
|
|
LT: 'HH:mm',
|
|
LTS: 'HH:mm:ss',
|
|
L: 'DD/MM/YYYY',
|
|
LL: 'MMMM [tile] D [san] YYYY',
|
|
LLL: 'MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm',
|
|
LLLL: 'dddd MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm'
|
|
},
|
|
relativeTime: {
|
|
future: '%s kɔnɔ',
|
|
past: 'a bɛ %s bɔ',
|
|
s: 'sanga dama dama',
|
|
m: 'miniti kelen',
|
|
mm: 'miniti %d',
|
|
h: 'lɛrɛ kelen',
|
|
hh: 'lɛrɛ %d',
|
|
d: 'tile kelen',
|
|
dd: 'tile %d',
|
|
M: 'kalo kelen',
|
|
MM: 'kalo %d',
|
|
y: 'san kelen',
|
|
yy: 'san %d'
|
|
}
|
|
};
|
|
dayjs.locale(locale, null, true);
|
|
export default locale; |