diff --git a/config/alfresco/messages/webclient.properties b/config/alfresco/messages/webclient.properties index 48e00c57e8..24dd5d2313 100644 --- a/config/alfresco/messages/webclient.properties +++ b/config/alfresco/messages/webclient.properties @@ -97,7 +97,7 @@ has_following_categories_space=This space has the following categories applied.. moved=moved copied=copied clipboard=Clipboard -node_added_clipboard=An item was added to the clipboard. There are now {0} item(s) in the clipboard. Click ''Paste All'' in the ''More Actions'' menu to add the items to your current location. +node_added_clipboard=An item was added to the clipboard. There are now {0} item(s) in the clipboard. To paste all collected items navigate to the desired space then from the menu under ''More Actions'' select ''Paste All''. recent_spaces=Recent Spaces shortcuts=Shortcuts company_home=Company Home diff --git a/source/java/org/alfresco/web/ui/repo/component/property/UIProperty.java b/source/java/org/alfresco/web/ui/repo/component/property/UIProperty.java index b3677bbf73..14ad17739d 100644 --- a/source/java/org/alfresco/web/ui/repo/component/property/UIProperty.java +++ b/source/java/org/alfresco/web/ui/repo/component/property/UIProperty.java @@ -94,8 +94,8 @@ public class UIProperty extends PropertySheetItem else { // warn the user that the property was not found anywhere - if (missingPropsLogger.isDebugEnabled()) - missingPropsLogger.debug("Failed to find property '" + propertyName + "' for node: " + node.getNodeRef().toString()); + if (missingPropsLogger.isWarnEnabled()) + missingPropsLogger.warn("Failed to find property '" + propertyName + "' for node: " + node.getNodeRef().toString()); } } else