ChatL10nFi constructor

const ChatL10nFi({
  1. String and = 'ja',
  2. String attachmentButtonAccessibilityLabel = 'Lähetä media',
  3. String emptyChatPlaceholder = 'Täällä ei ole vielä viestejä',
  4. String fileButtonAccessibilityLabel = 'Tiedosto',
  5. String inputPlaceholder = 'Viesti',
  6. String isTyping = 'kirjoittaa...',
  7. String others = 'muuta',
  8. String sendButtonAccessibilityLabel = 'Lähetä',
  9. String unreadMessagesLabel = 'Lukemattomat viestit',
})

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

Implementation

const ChatL10nFi({
  super.and = 'ja',
  super.attachmentButtonAccessibilityLabel = 'Lähetä media',
  super.emptyChatPlaceholder = 'Täällä ei ole vielä viestejä',
  super.fileButtonAccessibilityLabel = 'Tiedosto',
  super.inputPlaceholder = 'Viesti',
  super.isTyping = 'kirjoittaa...',
  super.others = 'muuta',
  super.sendButtonAccessibilityLabel = 'Lähetä',
  super.unreadMessagesLabel = 'Lukemattomat viestit',
});