ChatL10nAr constructor

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

Implementation

const ChatL10nAr({
  super.and = 'و',
  super.attachmentButtonAccessibilityLabel = 'إرسال الوسائط',
  super.emptyChatPlaceholder = 'لا يوجد رسائل هنا بعد',
  super.fileButtonAccessibilityLabel = 'ملف',
  super.inputPlaceholder = 'الرسالة',
  super.isTyping = 'يكتب…',
  super.others = 'آخرون',
  super.sendButtonAccessibilityLabel = 'إرسال',
  super.unreadMessagesLabel = 'الرسائل غير المقروءة',
});