ChatL10nZhCN constructor

const ChatL10nZhCN({
  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 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.and = '和其他',
  super.attachmentButtonAccessibilityLabel = '发送媒体文件',
  super.emptyChatPlaceholder = '暂无消息',
  super.fileButtonAccessibilityLabel = '文件',
  super.inputPlaceholder = '输入消息',
  super.isTyping = '正在输入…',
  super.others = '人',
  super.sendButtonAccessibilityLabel = '发送',
  super.unreadMessagesLabel = '未读消息',
});