ChatL10nTr constructor

const ChatL10nTr({
  1. String attachmentButtonAccessibilityLabel = 'Medya gönder',
  2. String emptyChatPlaceholder = 'Henüz mesaj yok',
  3. String fileButtonAccessibilityLabel = 'Dosya',
  4. String inputPlaceholder = 'Mesaj yazın',
  5. String sendButtonAccessibilityLabel = 'Gönder',
  6. String unreadMessagesLabel = 'Okunmamış Mesajlar',
})

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

Implementation

const ChatL10nTr({
  super.attachmentButtonAccessibilityLabel = 'Medya gönder',
  super.emptyChatPlaceholder = 'Henüz mesaj yok',
  super.fileButtonAccessibilityLabel = 'Dosya',
  super.inputPlaceholder = 'Mesaj yazın',
  super.sendButtonAccessibilityLabel = 'Gönder',
  super.unreadMessagesLabel = 'Okunmamış Mesajlar',
});