diff --git a/ccm-docmgr/src/com/arsdigita/cms/docmgr/ui/BrowseFileInfoPropertiesPane.java b/ccm-docmgr/src/com/arsdigita/cms/docmgr/ui/BrowseFileInfoPropertiesPane.java index 68580c5b9..2b5c1257f 100755 --- a/ccm-docmgr/src/com/arsdigita/cms/docmgr/ui/BrowseFileInfoPropertiesPane.java +++ b/ccm-docmgr/src/com/arsdigita/cms/docmgr/ui/BrowseFileInfoPropertiesPane.java @@ -904,11 +904,13 @@ public class BrowseFileInfoPropertiesPane extends ModalContainer implements DMCo } catch (java.io.IOException iox) { s_log.error("SendForm.process", iox); // iox.printStackTrace(); - throw new FormProcessException("An error occurred while trying to send document"); + throw new FormProcessException(GlobalizationUtil.globalize( + "ui.error.sending_document")); } catch (javax.mail.MessagingException mex) { s_log.error("SendForm.process", mex); //mex.printStackTrace(); - throw new FormProcessException("An error occurred while trying to send document"); + throw new FormProcessException(GlobalizationUtil.globalize( + "ui.error.sending_document")); } } } diff --git a/ccm-docmgr/src/com/arsdigita/cms/docmgr/ui/DMResources.properties b/ccm-docmgr/src/com/arsdigita/cms/docmgr/ui/DMResources.properties index 0c533c21c..855e91c2d 100755 --- a/ccm-docmgr/src/com/arsdigita/cms/docmgr/ui/DMResources.properties +++ b/ccm-docmgr/src/com/arsdigita/cms/docmgr/ui/DMResources.properties @@ -90,3 +90,4 @@ ui.portlet.action.newresource=New Document ui.folderTableModelBuilder.folderItemCounts=subfolders:{0};subitems:{1} ui.portlet.action.new.doclink=New DocLink ui.intended_audience_cannot_be_null=Intended Audience cannot be null +ui.error.sending_document=An error occurred while trying to send document diff --git a/ccm-docmgr/src/com/arsdigita/cms/docmgr/ui/DMResources_en.properties b/ccm-docmgr/src/com/arsdigita/cms/docmgr/ui/DMResources_en.properties index 0c533c21c..855e91c2d 100755 --- a/ccm-docmgr/src/com/arsdigita/cms/docmgr/ui/DMResources_en.properties +++ b/ccm-docmgr/src/com/arsdigita/cms/docmgr/ui/DMResources_en.properties @@ -90,3 +90,4 @@ ui.portlet.action.newresource=New Document ui.folderTableModelBuilder.folderItemCounts=subfolders:{0};subitems:{1} ui.portlet.action.new.doclink=New DocLink ui.intended_audience_cannot_be_null=Intended Audience cannot be null +ui.error.sending_document=An error occurred while trying to send document