From eed88fcf7f677e341f5dc868c21d3df0b0826900 Mon Sep 17 00:00:00 2001 From: evasques Date: Fri, 15 May 2020 09:04:20 +0100 Subject: [PATCH] MNT-17907 - Change label of cm:addressee to All Recipients (#985) --- src/main/resources/alfresco/messages/content-model.properties | 4 ++-- .../java/org/alfresco/repo/forms/FormServiceImplTest.java | 2 +- .../org/alfresco/repo/forms/script/test_formService.js | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/resources/alfresco/messages/content-model.properties b/src/main/resources/alfresco/messages/content-model.properties index 2a046bff19..09f938f5fb 100644 --- a/src/main/resources/alfresco/messages/content-model.properties +++ b/src/main/resources/alfresco/messages/content-model.properties @@ -286,8 +286,8 @@ cm_contentmodel.property.cm_originator.title=From cm_contentmodel.property.cm_originator.description=From cm_contentmodel.property.cm_addressee.title=To cm_contentmodel.property.cm_addressee.description=To -cm_contentmodel.property.cm_addressees.title=CC -cm_contentmodel.property.cm_addressees.description=CC +cm_contentmodel.property.cm_addressees.title=All Recipients +cm_contentmodel.property.cm_addressees.description=All Recipients cm_contentmodel.property.cm_subjectline.title=Subject cm_contentmodel.property.cm_subjectline.description=Subject cm_contentmodel.property.cm_sentdate.title=Sent Date diff --git a/src/test/java/org/alfresco/repo/forms/FormServiceImplTest.java b/src/test/java/org/alfresco/repo/forms/FormServiceImplTest.java index a391530a0a..5ceac2c970 100644 --- a/src/test/java/org/alfresco/repo/forms/FormServiceImplTest.java +++ b/src/test/java/org/alfresco/repo/forms/FormServiceImplTest.java @@ -128,7 +128,7 @@ public class FormServiceImplTest extends BaseAlfrescoSpringTest private static String LABEL_SIZE = "Size"; private static String LABEL_ORIGINATOR = "From"; private static String LABEL_ADDRESSEE = "To"; - private static String LABEL_ADDRESSEES = "CC"; + private static String LABEL_ADDRESSEES = "All Recipients"; private static String LABEL_SUBJECT = "Subject"; private static String LABEL_SENT_DATE = "Sent Date"; private static String LABEL_REFERENCES = "References"; diff --git a/src/test/resources/org/alfresco/repo/forms/script/test_formService.js b/src/test/resources/org/alfresco/repo/forms/script/test_formService.js index bdcf823bf1..2f56e0fda8 100644 --- a/src/test/resources/org/alfresco/repo/forms/script/test_formService.js +++ b/src/test/resources/org/alfresco/repo/forms/script/test_formService.js @@ -70,7 +70,7 @@ function testGetFormForContentNode() test.assertEquals("Description", descField.label); test.assertEquals("From", originatorField.label); test.assertEquals("To", addresseeField.label); - test.assertEquals("CC", addresseesField.label); + test.assertEquals("All Recipients", addresseesField.label); test.assertEquals("Subject", subjectField.label); test.assertEquals("Sent Date", sentDateField.label); test.assertEquals("References", referencesField.label);