MNT-17907 - Change label of cm:addressee to All Recipients (#985)

This commit is contained in:
evasques
2020-05-15 09:04:20 +01:00
committed by GitHub
parent b5f3f13949
commit eed88fcf7f
3 changed files with 4 additions and 4 deletions

View File

@@ -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

View File

@@ -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";

View File

@@ -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);