ChatL10nRu constructor

const ChatL10nRu({
  1. String attachmentButtonAccessibilityLabel = 'Отправить медиа',
  2. String emptyChatPlaceholder = 'Пока что у вас нет сообщений',
  3. String fileButtonAccessibilityLabel = 'Файл',
  4. String inputPlaceholder = 'Сообщение',
  5. String sendButtonAccessibilityLabel = 'Отправить',
  6. String unreadMessagesLabel = 'Непрочитанные сообщения',
})

Creates Russian l10n. Use this constructor if you want to override only a couple of properties, otherwise create a new class which extends ChatL10n.

Implementation

const ChatL10nRu({
  super.attachmentButtonAccessibilityLabel = 'Отправить медиа',
  super.emptyChatPlaceholder = 'Пока что у вас нет сообщений',
  super.fileButtonAccessibilityLabel = 'Файл',
  super.inputPlaceholder = 'Сообщение',
  super.sendButtonAccessibilityLabel = 'Отправить',
  super.unreadMessagesLabel = 'Непрочитанные сообщения',
});