- 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.9 KiB
JavaScript
38 lines
1.9 KiB
JavaScript
// Tamil [ta]
|
|
import dayjs from '../index';
|
|
var locale = {
|
|
name: 'ta',
|
|
weekdays: 'ஞாயிற்றுக்கிழமை_திங்கட்கிழமை_செவ்வாய்கிழமை_புதன்கிழமை_வியாழக்கிழமை_வெள்ளிக்கிழமை_சனிக்கிழமை'.split('_'),
|
|
months: 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split('_'),
|
|
weekdaysShort: 'ஞாயிறு_திங்கள்_செவ்வாய்_புதன்_வியாழன்_வெள்ளி_சனி'.split('_'),
|
|
monthsShort: 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split('_'),
|
|
weekdaysMin: 'ஞா_தி_செ_பு_வி_வெ_ச'.split('_'),
|
|
ordinal: function ordinal(n) {
|
|
return n;
|
|
},
|
|
formats: {
|
|
LT: 'HH:mm',
|
|
LTS: 'HH:mm:ss',
|
|
L: 'DD/MM/YYYY',
|
|
LL: 'D MMMM YYYY',
|
|
LLL: 'D MMMM YYYY, HH:mm',
|
|
LLLL: 'dddd, D MMMM YYYY, HH: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; |