
- 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.
40 lines
1.7 KiB
JavaScript
40 lines
1.7 KiB
JavaScript
// Nepalese [ne]
|
|
import dayjs from '../index';
|
|
var locale = {
|
|
name: 'ne',
|
|
weekdays: 'आइतबार_सोमबार_मङ्गलबार_बुधबार_बिहिबार_शुक्रबार_शनिबार'.split('_'),
|
|
weekdaysShort: 'आइत._सोम._मङ्गल._बुध._बिहि._शुक्र._शनि.'.split('_'),
|
|
weekdaysMin: 'आ._सो._मं._बु._बि._शु._श.'.split('_'),
|
|
months: 'जनवरी_फेब्रुवरी_मार्च_अप्रिल_मे_जुन_जुलाई_अगष्ट_सेप्टेम्बर_अक्टोबर_नोभेम्बर_डिसेम्बर'.split('_'),
|
|
monthsShort: 'जन._फेब्रु._मार्च_अप्रि._मई_जुन_जुलाई._अग._सेप्ट._अक्टो._नोभे._डिसे.'.split('_'),
|
|
relativeTime: {
|
|
future: '%s पछि',
|
|
past: '%s अघि',
|
|
s: 'सेकेन्ड',
|
|
m: 'एक मिनेट',
|
|
mm: '%d मिनेट',
|
|
h: 'घन्टा',
|
|
hh: '%d घन्टा',
|
|
d: 'एक दिन',
|
|
dd: '%d दिन',
|
|
M: 'एक महिना',
|
|
MM: '%d महिना',
|
|
y: 'एक वर्ष',
|
|
yy: '%d वर्ष'
|
|
},
|
|
ordinal: function ordinal(n) {
|
|
return ("" + n).replace(/\d/g, function (i) {
|
|
return '०१२३४५६७८९'[i];
|
|
});
|
|
},
|
|
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 बजे'
|
|
}
|
|
};
|
|
dayjs.locale(locale, null, true);
|
|
export default locale; |