- 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
38 lines
1.5 KiB
JavaScript
38 lines
1.5 KiB
JavaScript
// Hindi [hi]
|
|
import dayjs from '../index';
|
|
var locale = {
|
|
name: 'hi',
|
|
weekdays: 'रविवार_सोमवार_मंगलवार_बुधवार_गुरूवार_शुक्रवार_शनिवार'.split('_'),
|
|
months: 'जनवरी_फ़रवरी_मार्च_अप्रैल_मई_जून_जुलाई_अगस्त_सितम्बर_अक्टूबर_नवम्बर_दिसम्बर'.split('_'),
|
|
weekdaysShort: 'रवि_सोम_मंगल_बुध_गुरू_शुक्र_शनि'.split('_'),
|
|
monthsShort: 'जन._फ़र._मार्च_अप्रै._मई_जून_जुल._अग._सित._अक्टू._नव._दिस.'.split('_'),
|
|
weekdaysMin: 'र_सो_मं_बु_गु_शु_श'.split('_'),
|
|
ordinal: function ordinal(n) {
|
|
return n;
|
|
},
|
|
formats: {
|
|
LT: 'A h:mm बजे',
|
|
LTS: 'A h:mm:ss बजे',
|
|
L: 'DD/MM/YYYY',
|
|
LL: 'D MMMM YYYY',
|
|
LLL: 'D MMMM YYYY, A h:mm बजे',
|
|
LLLL: 'dddd, D MMMM YYYY, A h: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; |