ChatL10nEn constructor

const ChatL10nEn({
  1. String and = 'and',
  2. String attachmentButtonAccessibilityLabel = 'Send media',
  3. String emptyChatPlaceholder = 'No messages here yet',
  4. String fileButtonAccessibilityLabel = 'File',
  5. String inputPlaceholder = 'Message',
  6. String isTyping = 'is typing...',
  7. String others = 'others',
  8. String sendButtonAccessibilityLabel = 'Send',
  9. String unreadMessagesLabel = 'Unread messages',
})

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

Implementation

const ChatL10nEn({
  super.and = 'and',
  super.attachmentButtonAccessibilityLabel = 'Send media',
  super.emptyChatPlaceholder = 'No messages here yet',
  super.fileButtonAccessibilityLabel = 'File',
  super.inputPlaceholder = 'Message',
  super.isTyping = 'is typing...',
  super.others = 'others',
  super.sendButtonAccessibilityLabel = 'Send',
  super.unreadMessagesLabel = 'Unread messages',
});