Add translated cancel title to all modals

Signed-off-by: Sukanya Pandey <sukapan1@in.ibm.com>
Change-Id: I24ea692467077eddc7a74b86a9ba56d49818404b
diff --git a/src/views/AccessControl/SslCertificates/ModalUploadCertificate.vue b/src/views/AccessControl/SslCertificates/ModalUploadCertificate.vue
index 8a71977..cafbd93 100644
--- a/src/views/AccessControl/SslCertificates/ModalUploadCertificate.vue
+++ b/src/views/AccessControl/SslCertificates/ModalUploadCertificate.vue
@@ -62,6 +62,9 @@
         {{ $t('global.action.add') }}
       </template>
     </template>
+    <template #modal-cancel>
+      {{ $t('global.action.cancel') }}
+    </template>
   </b-modal>
 </template>
 
diff --git a/src/views/AccessControl/SslCertificates/SslCertificates.vue b/src/views/AccessControl/SslCertificates/SslCertificates.vue
index 1365bd9..4ce9a70 100644
--- a/src/views/AccessControl/SslCertificates/SslCertificates.vue
+++ b/src/views/AccessControl/SslCertificates/SslCertificates.vue
@@ -245,6 +245,7 @@
           {
             title: this.$t('pageSslCertificates.deleteCertificate'),
             okTitle: this.$t('global.action.delete'),
+            cancelTitle: this.$t('global.action.cancel'),
           }
         )
         .then((deleteConfirmed) => {