ChatL10nUk constructor

const ChatL10nUk({
  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 = 'Непрочитанi повідомлення',
})

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

Implementation

const ChatL10nUk({
  super.and = 'та ще',
  super.attachmentButtonAccessibilityLabel = 'Надіслати медіа',
  super.emptyChatPlaceholder = 'Повідомлень ще немає',
  super.fileButtonAccessibilityLabel = 'Файл',
  super.inputPlaceholder = 'Повідомлення',
  super.isTyping = 'пише...',
  super.others = 'інших',
  super.sendButtonAccessibilityLabel = 'Надіслати',
  super.unreadMessagesLabel = 'Непрочитанi повідомлення',
});