Setting up the translate message modal component

Inside the client\app\view-thread folder, create another folder named translate-message-modal, and inside that, create two files named translate-message-modal.html and translate-message-modal.ts. Update client\app/view-thread\translate-message-modal\translate-message-modal.html, as shown here:

// SNIPP SNIPP<div class="modal-header"> <h4 class="modal-title">Translate Text</h4> <button type="button" class="close" aria-label="Close" (click)="activeModal.dismiss('x')"> <span aria-hidden="true">&times;</span> </button></div><div class="modal-body"> <div class="card"> <div class="card-body"> <h5 class="card-title">Original Message</h5> {{message.description}} </div> </div> <div class="form-group"> ...

Get Google Cloud AI Services Quick Start Guide now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.