ChatL10nZhTW constructor

const ChatL10nZhTW({
  1. String and = '和另外',
  2. String attachmentButtonAccessibilityLabel = '傳送媒體',
  3. String emptyChatPlaceholder = '還沒有訊息在這裡',
  4. String fileButtonAccessibilityLabel = '檔案',
  5. String inputPlaceholder = '輸入訊息',
  6. String isTyping = '正在輸入…',
  7. String others = '人',
  8. String sendButtonAccessibilityLabel = '傳送',
  9. 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.and = '和另外',
  super.attachmentButtonAccessibilityLabel = '傳送媒體',
  super.emptyChatPlaceholder = '還沒有訊息在這裡',
  super.fileButtonAccessibilityLabel = '檔案',
  super.inputPlaceholder = '輸入訊息',
  super.isTyping = '正在輸入…',
  super.others = '人',
  super.sendButtonAccessibilityLabel = '傳送',
  super.unreadMessagesLabel = '未讀訊息',
});