- 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.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
// Portuguese (Brazil) [pt-br]
|
|
import dayjs from '../index';
|
|
var locale = {
|
|
name: 'pt-br',
|
|
weekdays: 'domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado'.split('_'),
|
|
weekdaysShort: 'dom_seg_ter_qua_qui_sex_sáb'.split('_'),
|
|
weekdaysMin: 'Do_2ª_3ª_4ª_5ª_6ª_Sá'.split('_'),
|
|
months: 'janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro'.split('_'),
|
|
monthsShort: 'jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez'.split('_'),
|
|
ordinal: function ordinal(n) {
|
|
return n + "\xBA";
|
|
},
|
|
formats: {
|
|
LT: 'HH:mm',
|
|
LTS: 'HH:mm:ss',
|
|
L: 'DD/MM/YYYY',
|
|
LL: 'D [de] MMMM [de] YYYY',
|
|
LLL: 'D [de] MMMM [de] YYYY [às] HH:mm',
|
|
LLLL: 'dddd, D [de] MMMM [de] YYYY [às] HH:mm'
|
|
},
|
|
relativeTime: {
|
|
future: 'em %s',
|
|
past: 'há %s',
|
|
s: 'poucos segundos',
|
|
m: 'um minuto',
|
|
mm: '%d minutos',
|
|
h: 'uma hora',
|
|
hh: '%d horas',
|
|
d: 'um dia',
|
|
dd: '%d dias',
|
|
M: 'um mês',
|
|
MM: '%d meses',
|
|
y: 'um ano',
|
|
yy: '%d anos'
|
|
}
|
|
};
|
|
dayjs.locale(locale, null, true);
|
|
export default locale; |