mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
- Introduction of the component generator framework
- Changed some confg attrbiute names for consistency git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2634 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -572,19 +572,8 @@ public class NewSpaceWizard extends AbstractWizardBean
|
||||
if (typeDef != null &&
|
||||
this.dictionaryService.isSubClass(typeDef.getName(), ContentModel.TYPE_FOLDER))
|
||||
{
|
||||
// look for a client localized string
|
||||
String label = null;
|
||||
String msgId = child.getAttribute("displayLabelId");
|
||||
if (msgId != null)
|
||||
{
|
||||
label = Application.getMessage(context, msgId);
|
||||
}
|
||||
|
||||
// if there wasn't an externalized string look for one in the config
|
||||
if (label == null)
|
||||
{
|
||||
label = child.getAttribute("displayLabel");
|
||||
}
|
||||
// try and get the display label from config
|
||||
String label = Utils.getDisplayLabel(context, child);
|
||||
|
||||
// if there wasn't a client based label try and get it from the dictionary
|
||||
if (label == null)
|
||||
@@ -599,17 +588,7 @@ public class NewSpaceWizard extends AbstractWizardBean
|
||||
}
|
||||
|
||||
// resolve a description string for the type
|
||||
String description = null;
|
||||
msgId = child.getAttribute("descriptionMsgId");
|
||||
if (msgId != null)
|
||||
{
|
||||
description = Application.getMessage(context, msgId);
|
||||
}
|
||||
|
||||
if (description == null)
|
||||
{
|
||||
description = child.getAttribute("description");
|
||||
}
|
||||
String description = Utils.getDescription(context, child);
|
||||
|
||||
// if we don't have a local description just use the label
|
||||
if (description == null)
|
||||
|
Reference in New Issue
Block a user