ChatL10nZhCN constructor

const ChatL10nZhCN({
  1. String attachmentButtonAccessibilityLabel = '发送媒体文件',
  2. String emptyChatPlaceholder = '暂无消息',
  3. String fileButtonAccessibilityLabel = '文件',
  4. String inputPlaceholder = '输入消息',
  5. String sendButtonAccessibilityLabel = '发送',
  6. String unreadMessagesLabel = '未读消息',
})

Creates Simplified 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 ChatL10nZhCN({
  super.attachmentButtonAccessibilityLabel = '发送媒体文件',
  super.emptyChatPlaceholder = '暂无消息',
  super.fileButtonAccessibilityLabel = '文件',
  super.inputPlaceholder = '输入消息',
  super.sendButtonAccessibilityLabel = '发送',
  super.unreadMessagesLabel = '未读消息',
});