ChatL10nPl constructor

const ChatL10nPl({
  1. String attachmentButtonAccessibilityLabel = 'Wyślij multimedia',
  2. String emptyChatPlaceholder = 'Tu jeszcze nie ma wiadomości',
  3. String fileButtonAccessibilityLabel = 'Plik',
  4. String inputPlaceholder = 'Napisz wiadomość',
  5. String sendButtonAccessibilityLabel = 'Wyślij',
  6. 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.attachmentButtonAccessibilityLabel = 'Wyślij multimedia',
  super.emptyChatPlaceholder = 'Tu jeszcze nie ma wiadomości',
  super.fileButtonAccessibilityLabel = 'Plik',
  super.inputPlaceholder = 'Napisz wiadomość',
  super.sendButtonAccessibilityLabel = 'Wyślij',
  super.unreadMessagesLabel = 'Nieprzeczytane wiadomości',
});