ChatTranslations constructor

const ChatTranslations({
  1. String chatsTitle = 'Chats',
  2. String chatsUnread = 'unread',
  3. String newChatButton = 'Start a chat',
  4. String newGroupChatButton = 'Start group chat',
  5. String newChatTitle = 'Start a chat',
  6. String image = 'Image',
  7. String searchPlaceholder = 'Search...',
  8. String startTyping = 'Start typing to find a user to chat with.',
  9. String cancelImagePickerBtn = 'Cancel',
  10. String messagePlaceholder = 'Write your message here...',
  11. String writeMessageToStartChat = 'Write a message to start the chat.',
  12. String writeFirstMessageInGroupChat = 'Write the first message in this group chat.',
  13. String imageUploading = 'Image is uploading...',
  14. String deleteChatButton = 'Delete',
  15. String deleteChatModalTitle = 'Delete chat',
  16. String deleteChatModalDescription = 'Are you sure you want to delete this chat?',
  17. String deleteChatModalCancel = 'Cancel',
  18. String deleteChatModalConfirm = 'Delete',
  19. String noUsersFound = 'No users were found to start a chat with.',
  20. String noChatsFound = 'Click on \'Start a chat\' to create a new chat.',
  21. String anonymousUser = 'Anonymous user',
  22. String chatCantBeDeleted = 'This chat can\'t be deleted',
  23. String chatProfileUsers = 'Users:',
  24. String imagePickerTitle = 'Do you want to upload a file or take a picture?',
  25. String uploadFile = 'UPLOAD FILE',
  26. String takePicture = 'TAKE PICTURE',
})

Implementation

const ChatTranslations({
  this.chatsTitle = 'Chats',
  this.chatsUnread = 'unread',
  this.newChatButton = 'Start a chat',
  this.newGroupChatButton = 'Start group chat',
  this.newChatTitle = 'Start a chat',
  this.image = 'Image',
  this.searchPlaceholder = 'Search...',
  this.startTyping = 'Start typing to find a user to chat with.',
  this.cancelImagePickerBtn = 'Cancel',
  this.messagePlaceholder = 'Write your message here...',
  this.writeMessageToStartChat = 'Write a message to start the chat.',
  this.writeFirstMessageInGroupChat =
      'Write the first message in this group chat.',
  this.imageUploading = 'Image is uploading...',
  this.deleteChatButton = 'Delete',
  this.deleteChatModalTitle = 'Delete chat',
  this.deleteChatModalDescription =
      'Are you sure you want to delete this chat?',
  this.deleteChatModalCancel = 'Cancel',
  this.deleteChatModalConfirm = 'Delete',
  this.noUsersFound = 'No users were found to start a chat with.',
  this.noChatsFound = 'Click on \'Start a chat\' to create a new chat.',
  this.anonymousUser = 'Anonymous user',
  this.chatCantBeDeleted = 'This chat can\'t be deleted',
  this.chatProfileUsers = 'Users:',
  this.imagePickerTitle = 'Do you want to upload a file or take a picture?',
  this.uploadFile = 'UPLOAD FILE',
  this.takePicture = 'TAKE PICTURE',
});