Skip to content

Commit

Permalink
Merge pull request #49 from SalesforceFoundation/feature/xinnanli/edu…
Browse files Browse the repository at this point in the history
…insti

Track Type of Educational Institution
  • Loading branch information
dgamboni authored Aug 26, 2019
2 parents d0d5f92 + 4a82978 commit d31b846
Show file tree
Hide file tree
Showing 6 changed files with 143 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/objectTranslations/Account-ca.objectTranslation
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomObjectTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<fields>
<help><!-- Indicates that this Educational Institution provides elementary school services and curriculum. --></help>
<label><!-- Elementary School --></label>
<name>Elementary_School__c</name>
</fields>
<fields>
<help><!-- Indicates that this Educational Institution provides high school services and curriculum. --></help>
<label><!-- High School --></label>
<name>High_School__c</name>
</fields>
<fields>
<help><!-- Indicates that this Educational Institution provides middle school services and curriculum. --></help>
<label><!-- Middle School --></label>
<name>Middle_School__c</name>
</fields>
<fields>
<help><!-- Indicates that this Educational Institution provides Pre-K services and curriculum. --></help>
<label><!-- Pre-school --></label>
<name>Pre_school__c</name>
</fields>
</CustomObjectTranslation>
23 changes: 23 additions & 0 deletions src/objectTranslations/Account-en_US.objectTranslation
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomObjectTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<fields>
<help><!-- Indicates that this Educational Institution provides elementary school services and curriculum. --></help>
<label><!-- Elementary School --></label>
<name>Elementary_School__c</name>
</fields>
<fields>
<help><!-- Indicates that this Educational Institution provides high school services and curriculum. --></help>
<label><!-- High School --></label>
<name>High_School__c</name>
</fields>
<fields>
<help><!-- Indicates that this Educational Institution provides middle school services and curriculum. --></help>
<label><!-- Middle School --></label>
<name>Middle_School__c</name>
</fields>
<fields>
<help><!-- Indicates that this Educational Institution provides Pre-K services and curriculum. --></help>
<label><!-- Pre-school --></label>
<name>Pre_school__c</name>
</fields>
</CustomObjectTranslation>
23 changes: 23 additions & 0 deletions src/objectTranslations/Account-es.objectTranslation
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomObjectTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<fields>
<help><!-- Indicates that this Educational Institution provides elementary school services and curriculum. --></help>
<label><!-- Elementary School --></label>
<name>Elementary_School__c</name>
</fields>
<fields>
<help><!-- Indicates that this Educational Institution provides high school services and curriculum. --></help>
<label><!-- High School --></label>
<name>High_School__c</name>
</fields>
<fields>
<help><!-- Indicates that this Educational Institution provides middle school services and curriculum. --></help>
<label><!-- Middle School --></label>
<name>Middle_School__c</name>
</fields>
<fields>
<help><!-- Indicates that this Educational Institution provides Pre-K services and curriculum. --></help>
<label><!-- Pre-school --></label>
<name>Pre_school__c</name>
</fields>
</CustomObjectTranslation>
23 changes: 23 additions & 0 deletions src/objectTranslations/Account-fr.objectTranslation
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomObjectTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<fields>
<help><!-- Indicates that this Educational Institution provides elementary school services and curriculum. --></help>
<label><!-- Elementary School --></label>
<name>Elementary_School__c</name>
</fields>
<fields>
<help><!-- Indicates that this Educational Institution provides high school services and curriculum. --></help>
<label><!-- High School --></label>
<name>High_School__c</name>
</fields>
<fields>
<help><!-- Indicates that this Educational Institution provides middle school services and curriculum. --></help>
<label><!-- Middle School --></label>
<name>Middle_School__c</name>
</fields>
<fields>
<help><!-- Indicates that this Educational Institution provides Pre-K services and curriculum. --></help>
<label><!-- Pre-school --></label>
<name>Pre_school__c</name>
</fields>
</CustomObjectTranslation>
43 changes: 43 additions & 0 deletions src/objects/Account.object
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomObject xmlns="http://soap.sforce.com/2006/04/metadata">
<fields>
<fullName>Elementary_School__c</fullName>
<defaultValue>false</defaultValue>
<description>Indicates that this Educational Institution provides elementary school services and curriculum.</description>
<externalId>false</externalId>
<inlineHelpText>Indicates that this Educational Institution provides elementary school services and curriculum.</inlineHelpText>
<label>Elementary School</label>
<trackFeedHistory>false</trackFeedHistory>
<type>Checkbox</type>
</fields>
<fields>
<fullName>High_School__c</fullName>
<defaultValue>false</defaultValue>
<description>Indicates that this Educational Institution provides high school services and curriculum.</description>
<externalId>false</externalId>
<inlineHelpText>Indicates that this Educational Institution provides high school services and curriculum.</inlineHelpText>
<label>High School</label>
<trackFeedHistory>false</trackFeedHistory>
<type>Checkbox</type>
</fields>
<fields>
<fullName>Middle_School__c</fullName>
<defaultValue>false</defaultValue>
<description>Indicates that this Educational Institution provides middle school services and curriculum.</description>
<externalId>false</externalId>
<inlineHelpText>Indicates that this Educational Institution provides middle school services and curriculum.</inlineHelpText>
<label>Middle School</label>
<trackFeedHistory>false</trackFeedHistory>
<type>Checkbox</type>
</fields>
<fields>
<fullName>Pre_school__c</fullName>
<defaultValue>false</defaultValue>
<description>Indicates that this Educational Institution provides Pre-K services and curriculum.</description>
<externalId>false</externalId>
<inlineHelpText>Indicates that this Educational Institution provides Pre-K services and curriculum.</inlineHelpText>
<label>Pre-school</label>
<trackFeedHistory>false</trackFeedHistory>
<type>Checkbox</type>
</fields>
</CustomObject>
8 changes: 8 additions & 0 deletions src/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,21 @@
<fullName>K-12 Kit</fullName>
<types>
<members>Contact.Highly_Qualified__c</members>
<members>Account.Elementary_School__c</members>
<members>Account.High_School__c</members>
<members>Account.Middle_School__c</members>
<members>Account.Pre_school__c</members>
<members>Contact.Highest_Level_of_Education__c</members>
<members>Contact.Years_of_Experience__c</members>
<members>hed__Relationship__c.FERPA_Approved__c</members>
<members>hed__Relationship__c.HIPPA_Approved__c</members>
<name>CustomField</name>
</types>
<types>
<members>Account-ca</members>
<members>Account-en_US</members>
<members>Account-es</members>
<members>Account-fr</members>
<members>Contact-ca</members>
<members>Contact-es</members>
<members>Contact-fr</members>
Expand Down

0 comments on commit d31b846

Please sign in to comment.