ChatL10nDe constructor

const ChatL10nDe({
  1. String and = 'und',
  2. String attachmentButtonAccessibilityLabel = 'Medien senden',
  3. String emptyChatPlaceholder = 'Noch keine Nachrichten',
  4. String fileButtonAccessibilityLabel = 'Datei',
  5. String inputPlaceholder = 'Nachricht',
  6. String isTyping = 'tippt...',
  7. String others = 'andere',
  8. String sendButtonAccessibilityLabel = 'Senden',
  9. String unreadMessagesLabel = 'Ungelesene Nachrichten',
})

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

Implementation

const ChatL10nDe({
  super.and = 'und',
  super.attachmentButtonAccessibilityLabel = 'Medien senden',
  super.emptyChatPlaceholder = 'Noch keine Nachrichten',
  super.fileButtonAccessibilityLabel = 'Datei',
  super.inputPlaceholder = 'Nachricht',
  super.isTyping = 'tippt...',
  super.others = 'andere',
  super.sendButtonAccessibilityLabel = 'Senden',
  super.unreadMessagesLabel = 'Ungelesene Nachrichten',
});