
- 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.
99 lines
3.2 KiB
JavaScript
99 lines
3.2 KiB
JavaScript
// Russian [ru]
|
||
import dayjs from '../index';
|
||
var monthFormat = 'января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря'.split('_');
|
||
var monthStandalone = 'январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь'.split('_');
|
||
var monthShortFormat = 'янв._февр._мар._апр._мая_июня_июля_авг._сент._окт._нояб._дек.'.split('_');
|
||
var monthShortStandalone = 'янв._февр._март_апр._май_июнь_июль_авг._сент._окт._нояб._дек.'.split('_');
|
||
var MONTHS_IN_FORMAT = /D[oD]?(\[[^[\]]*\]|\s)+MMMM?/;
|
||
|
||
function plural(word, num) {
|
||
var forms = word.split('_');
|
||
return num % 10 === 1 && num % 100 !== 11 ? forms[0] : num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20) ? forms[1] : forms[2]; // eslint-disable-line
|
||
}
|
||
|
||
function relativeTimeWithPlural(number, withoutSuffix, key) {
|
||
var format = {
|
||
mm: withoutSuffix ? 'минута_минуты_минут' : 'минуту_минуты_минут',
|
||
hh: 'час_часа_часов',
|
||
dd: 'день_дня_дней',
|
||
MM: 'месяц_месяца_месяцев',
|
||
yy: 'год_года_лет'
|
||
};
|
||
|
||
if (key === 'm') {
|
||
return withoutSuffix ? 'минута' : 'минуту';
|
||
}
|
||
|
||
return number + " " + plural(format[key], +number);
|
||
}
|
||
|
||
var months = function months(dayjsInstance, format) {
|
||
if (MONTHS_IN_FORMAT.test(format)) {
|
||
return monthFormat[dayjsInstance.month()];
|
||
}
|
||
|
||
return monthStandalone[dayjsInstance.month()];
|
||
};
|
||
|
||
months.s = monthStandalone;
|
||
months.f = monthFormat;
|
||
|
||
var monthsShort = function monthsShort(dayjsInstance, format) {
|
||
if (MONTHS_IN_FORMAT.test(format)) {
|
||
return monthShortFormat[dayjsInstance.month()];
|
||
}
|
||
|
||
return monthShortStandalone[dayjsInstance.month()];
|
||
};
|
||
|
||
monthsShort.s = monthShortStandalone;
|
||
monthsShort.f = monthShortFormat;
|
||
var locale = {
|
||
name: 'ru',
|
||
weekdays: 'воскресенье_понедельник_вторник_среда_четверг_пятница_суббота'.split('_'),
|
||
weekdaysShort: 'вск_пнд_втр_срд_чтв_птн_сбт'.split('_'),
|
||
weekdaysMin: 'вс_пн_вт_ср_чт_пт_сб'.split('_'),
|
||
months: months,
|
||
monthsShort: monthsShort,
|
||
weekStart: 1,
|
||
yearStart: 4,
|
||
formats: {
|
||
LT: 'H:mm',
|
||
LTS: 'H:mm:ss',
|
||
L: 'DD.MM.YYYY',
|
||
LL: 'D MMMM YYYY г.',
|
||
LLL: 'D MMMM YYYY г., H:mm',
|
||
LLLL: 'dddd, D MMMM YYYY г., H:mm'
|
||
},
|
||
relativeTime: {
|
||
future: 'через %s',
|
||
past: '%s назад',
|
||
s: 'несколько секунд',
|
||
m: relativeTimeWithPlural,
|
||
mm: relativeTimeWithPlural,
|
||
h: 'час',
|
||
hh: relativeTimeWithPlural,
|
||
d: 'день',
|
||
dd: relativeTimeWithPlural,
|
||
M: 'месяц',
|
||
MM: relativeTimeWithPlural,
|
||
y: 'год',
|
||
yy: relativeTimeWithPlural
|
||
},
|
||
ordinal: function ordinal(n) {
|
||
return n;
|
||
},
|
||
meridiem: function meridiem(hour) {
|
||
if (hour < 4) {
|
||
return 'ночи';
|
||
} else if (hour < 12) {
|
||
return 'утра';
|
||
} else if (hour < 17) {
|
||
return 'дня';
|
||
}
|
||
|
||
return 'вечера';
|
||
}
|
||
};
|
||
dayjs.locale(locale, null, true);
|
||
export default locale; |