ChatL10nKo constructor

const ChatL10nKo({
  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 Korean l10n. Use this constructor if you want to override only a couple of properties, otherwise create a new class which extends ChatL10n.

Implementation

const ChatL10nKo({
  super.and = '및',
  super.attachmentButtonAccessibilityLabel = '미디어 보내기',
  super.emptyChatPlaceholder = '주고받은 메시지가 없습니다',
  super.fileButtonAccessibilityLabel = '파일',
  super.inputPlaceholder = '메시지',
  super.isTyping = '님이 입력 중...',
  super.others = '개',
  super.sendButtonAccessibilityLabel = '보내기',
  super.unreadMessagesLabel = '읽지 않은 메시지',
});