ChatL10nSe constructor

const ChatL10nSe({
  1. String and = 'och',
  2. String attachmentButtonAccessibilityLabel = 'Skicka media',
  3. String emptyChatPlaceholder = 'Inga meddelanden än',
  4. String fileButtonAccessibilityLabel = 'Fil',
  5. String inputPlaceholder = 'Meddelande',
  6. String isTyping = 'skriver...',
  7. String others = 'andra',
  8. String sendButtonAccessibilityLabel = 'Skicka',
  9. String unreadMessagesLabel = 'Olästa meddelanden',
})

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

Implementation

const ChatL10nSe({
  super.and = 'och',
  super.attachmentButtonAccessibilityLabel = 'Skicka media',
  super.emptyChatPlaceholder = 'Inga meddelanden än',
  super.fileButtonAccessibilityLabel = 'Fil',
  super.inputPlaceholder = 'Meddelande',
  super.isTyping = 'skriver...',
  super.others = 'andra',
  super.sendButtonAccessibilityLabel = 'Skicka',
  super.unreadMessagesLabel = 'Olästa meddelanden',
});