- 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.2 KiB
JavaScript
39 lines
1.2 KiB
JavaScript
// Northern Sami [se]
|
|
import dayjs from '../index';
|
|
var locale = {
|
|
name: 'se',
|
|
weekdays: 'sotnabeaivi_vuossárga_maŋŋebárga_gaskavahkku_duorastat_bearjadat_lávvardat'.split('_'),
|
|
months: 'ođđajagemánnu_guovvamánnu_njukčamánnu_cuoŋománnu_miessemánnu_geassemánnu_suoidnemánnu_borgemánnu_čakčamánnu_golggotmánnu_skábmamánnu_juovlamánnu'.split('_'),
|
|
weekStart: 1,
|
|
weekdaysShort: 'sotn_vuos_maŋ_gask_duor_bear_láv'.split('_'),
|
|
monthsShort: 'ođđj_guov_njuk_cuo_mies_geas_suoi_borg_čakč_golg_skáb_juov'.split('_'),
|
|
weekdaysMin: 's_v_m_g_d_b_L'.split('_'),
|
|
ordinal: function ordinal(n) {
|
|
return n;
|
|
},
|
|
formats: {
|
|
LT: 'HH:mm',
|
|
LTS: 'HH:mm:ss',
|
|
L: 'DD.MM.YYYY',
|
|
LL: 'MMMM D. [b.] YYYY',
|
|
LLL: 'MMMM D. [b.] YYYY [ti.] HH:mm',
|
|
LLLL: 'dddd, MMMM D. [b.] YYYY [ti.] HH:mm'
|
|
},
|
|
relativeTime: {
|
|
future: '%s geažes',
|
|
past: 'maŋit %s',
|
|
s: 'moadde sekunddat',
|
|
m: 'okta minuhta',
|
|
mm: '%d minuhtat',
|
|
h: 'okta diimmu',
|
|
hh: '%d diimmut',
|
|
d: 'okta beaivi',
|
|
dd: '%d beaivvit',
|
|
M: 'okta mánnu',
|
|
MM: '%d mánut',
|
|
y: 'okta jahki',
|
|
yy: '%d jagit'
|
|
}
|
|
};
|
|
dayjs.locale(locale, null, true);
|
|
export default locale; |