
- Complete NestJS TypeScript implementation with WebSocket support - Direct messaging (DM) and group chat functionality - End-to-end encryption with AES encryption and key pairs - Media file support (images, videos, audio, documents) up to 100MB - Push notifications with Firebase Cloud Messaging integration - Mention alerts and real-time typing indicators - User authentication with JWT and Passport - SQLite database with TypeORM entities and relationships - Comprehensive API documentation with Swagger/OpenAPI - File upload handling with secure access control - Online/offline status tracking and presence management - Message editing, deletion, and reply functionality - Notification management with automatic cleanup - Health check endpoint for monitoring - CORS configuration for cross-origin requests - Environment-based configuration management - Structured for Flutter SDK integration Features implemented: ✅ Real-time messaging with Socket.IO ✅ User registration and authentication ✅ Direct messages and group chats ✅ Media file uploads and management ✅ End-to-end encryption ✅ Push notifications ✅ Mention alerts ✅ Typing indicators ✅ Message read receipts ✅ Online status tracking ✅ File access control ✅ Comprehensive API documentation Ready for Flutter SDK development and production deployment.
38 lines
1.6 KiB
JavaScript
38 lines
1.6 KiB
JavaScript
// Gujarati [gu]
|
|
import dayjs from '../index';
|
|
var locale = {
|
|
name: 'gu',
|
|
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; |