diff --git a/app/assets/javascripts/registrar/application.coffee b/app/assets/javascripts/registrar/application.coffee index 9c7dfec03..943f14a23 100644 --- a/app/assets/javascripts/registrar/application.coffee +++ b/app/assets/javascripts/registrar/application.coffee @@ -35,8 +35,8 @@ $(document).on 'page:change', -> if (files = fileInput.files).length fileSize = files[0].size if fileSize < minSize - alert 'Document size is less then 8kB bytes' + alert 'Document size should be more than 8kB' return false else if fileSize > maxSize - alert 'Document size is more then 8MB bytes' + alert 'Document size should be less than 8MB' return false