ChatL10nEs constructor

const ChatL10nEs({
  1. String and = 'y',
  2. String attachmentButtonAccessibilityLabel = 'Enviar multimedia',
  3. String emptyChatPlaceholder = 'Aún no hay mensajes',
  4. String fileButtonAccessibilityLabel = 'Archivo',
  5. String inputPlaceholder = 'Mensaje',
  6. String isTyping = 'está escribiendo...',
  7. String others = 'otros',
  8. String sendButtonAccessibilityLabel = 'Enviar',
  9. String unreadMessagesLabel = 'Mensajes no leídos',
})

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

Implementation

const ChatL10nEs({
  super.and = 'y',
  super.attachmentButtonAccessibilityLabel = 'Enviar multimedia',
  super.emptyChatPlaceholder = 'Aún no hay mensajes',
  super.fileButtonAccessibilityLabel = 'Archivo',
  super.inputPlaceholder = 'Mensaje',
  super.isTyping = 'está escribiendo...',
  super.others = 'otros',
  super.sendButtonAccessibilityLabel = 'Enviar',
  super.unreadMessagesLabel = 'Mensajes no leídos',
});