ChatL10nRu constructor

const ChatL10nRu({
  1. String and = 'и',
  2. String attachmentButtonAccessibilityLabel = 'Отправить медиа',
  3. String emptyChatPlaceholder = 'Пока что у вас нет сообщений',
  4. String fileButtonAccessibilityLabel = 'Файл',
  5. String inputPlaceholder = 'Сообщение',
  6. String isTyping = 'печатает…',
  7. String others = 'другиx',
  8. String sendButtonAccessibilityLabel = 'Отправить',
  9. 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.and = 'и',
  super.attachmentButtonAccessibilityLabel = 'Отправить медиа',
  super.emptyChatPlaceholder = 'Пока что у вас нет сообщений',
  super.fileButtonAccessibilityLabel = 'Файл',
  super.inputPlaceholder = 'Сообщение',
  super.isTyping = 'печатает…',
  super.others = 'другиx',
  super.sendButtonAccessibilityLabel = 'Отправить',
  super.unreadMessagesLabel = 'Непрочитанные сообщения',
});