ChatL10nPl constructor

const ChatL10nPl({
  1. String and = 'i',
  2. String attachmentButtonAccessibilityLabel = 'Wyślij multimedia',
  3. String emptyChatPlaceholder = 'Tu jeszcze nie ma wiadomości',
  4. String fileButtonAccessibilityLabel = 'Plik',
  5. String inputPlaceholder = 'Napisz wiadomość',
  6. String isTyping = 'pisze...',
  7. String others = 'innych',
  8. String sendButtonAccessibilityLabel = 'Wyślij',
  9. String unreadMessagesLabel = 'Nieprzeczytane wiadomości',
})

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

Implementation

const ChatL10nPl({
  super.and = 'i',
  super.attachmentButtonAccessibilityLabel = 'Wyślij multimedia',
  super.emptyChatPlaceholder = 'Tu jeszcze nie ma wiadomości',
  super.fileButtonAccessibilityLabel = 'Plik',
  super.inputPlaceholder = 'Napisz wiadomość',
  super.isTyping = 'pisze...',
  super.others = 'innych',
  super.sendButtonAccessibilityLabel = 'Wyślij',
  super.unreadMessagesLabel = 'Nieprzeczytane wiadomości',
});