ChatL10nZhTW constructor

const ChatL10nZhTW({
  1. String attachmentButtonAccessibilityLabel = '傳送媒體',
  2. String emptyChatPlaceholder = '還沒有訊息在這裡',
  3. String fileButtonAccessibilityLabel = '檔案',
  4. String inputPlaceholder = '輸入訊息',
  5. String sendButtonAccessibilityLabel = '傳送',
  6. String unreadMessagesLabel = '未讀訊息',
})

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

Implementation

const ChatL10nZhTW({
  super.attachmentButtonAccessibilityLabel = '傳送媒體',
  super.emptyChatPlaceholder = '還沒有訊息在這裡',
  super.fileButtonAccessibilityLabel = '檔案',
  super.inputPlaceholder = '輸入訊息',
  super.sendButtonAccessibilityLabel = '傳送',
  super.unreadMessagesLabel = '未讀訊息',
});