Skip to content

Commit

Permalink
update descriptions of childBeforeMarriage and multipleParents
Browse files Browse the repository at this point in the history
  • Loading branch information
justincy committed May 19, 2015
1 parent c8da862 commit bd3c795
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 16 deletions.
7 changes: 4 additions & 3 deletions fs-check.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ module.exports = {
id: 'childBeforeMarriage',
type: 'problem',
signature: 'relationships',
help: ['addingAndCorrecting'],
help: ['addingAndCorrecting', 'parentRelationshipType'],
check: function(person, relationships, persons) {

var marriages = relationships.getSpouseRelationships(),
Expand Down Expand Up @@ -1416,7 +1416,7 @@ module.exports = {
id: 'multipleParents',
type: 'family',
signature: 'relationships',
help: ['addingAndCorrecting'],
help: ['addingAndCorrecting', 'parentRelationshipType'],
check: function(person, relationships, people) {

var parentRelationships = relationships.getParentRelationships();
Expand Down Expand Up @@ -1936,7 +1936,8 @@ module.exports = {
mergingDuplicates: 'https://familysearch.org/ask/salesforce/viewArticle?urlname=Merging-Duplicate-Records-in-Family-Tree-1381814853391',
nonexactDates: 'https://familysearch.org/ask/salesforce/viewArticle?urlname=Do-not-know-exact-birth-date-or-death-date',
recordHints: 'https://familysearch.org/ask/salesforce/viewArticle?urlname=Record-Hints',
standardizing: 'https://familysearch.org/ask/salesforce/viewArticle?urlname=Entering-Standardized-Dates-and-Places'
standardizing: 'https://familysearch.org/ask/salesforce/viewArticle?urlname=Entering-Standardized-Dates-and-Places',
parentRelationshipType: 'https://familysearch.org/ask/salesforce/viewArticle?urlname=Adding-Changing-and-Deleting-Relationship-Types-between-Parents-and-Children'
};
},{}],40:[function(_dereq_,module,exports){
var utils = _dereq_('./util'),
Expand Down
2 changes: 1 addition & 1 deletion fs-check.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion fs-check.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lang/en/fs-check-en.js

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions lang/en/lib/checks/childBeforeMarriage.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
It is abnormal for a child to be born before a couple is married. Check the marriages with the
following people to verify that the marriage date and children's birth dates and fix any incorrect
information in the [Family Tree](https://familysearch.org/tree/#view=ancestor&person={{pid}}).
It is abnormal for a child to be born before a couple is married. It is possible
when the child is adopted or is a step-child. In this case the parent relationship
type needs to be be changed from biological to adopted, foster, guardianship, or
step. Check the marriages with the following people to verify the marriage date,
the children's birth dates, and the parent relationship type.

{{#children}}
* [{{childName}}](https://familysearch.org/tree/#view=ancestor&person={{childId}}) was born before {{name}} married [{{spouseName}}](https://familysearch.org/tree/#view=ancestor&person={{spouseId}}).
Expand Down
5 changes: 3 additions & 2 deletions lang/en/lib/checks/multipleParents.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{{name}} is listed as having multiple biological parents, which is highly improbable.
Fix this problem by visiting [{{name}}](https://familysearch.org/tree/#view=ancestor&person={{pid}})
in the Family Tree and examining the parent relationships.
Children can have multiple parents if they were adopted, or in other similar
circumstances. In this case the parent relationship type needs to be
be changed from biological to adopted, foster, guardianship, or step.
3 changes: 2 additions & 1 deletion lang/en/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ var data = module.exports = {
mergingDuplicates: 'Merging Duplicate Persons',
nonexactDates: 'Approximate Dates',
recordHints: 'Reviewing Record Hints',
standardizing: 'Standardizing Dates and Places'
standardizing: 'Standardizing Dates and Places',
parentRelationshipType: 'Updating Parent Relationship Type'
},
checks: {
birthBeforeParentsBirth: {
Expand Down
2 changes: 1 addition & 1 deletion lib/checks/childBeforeMarriage.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = {
id: 'childBeforeMarriage',
type: 'problem',
signature: 'relationships',
help: ['addingAndCorrecting'],
help: ['addingAndCorrecting', 'parentRelationshipType'],
check: function(person, relationships, persons) {

var marriages = relationships.getSpouseRelationships(),
Expand Down
2 changes: 1 addition & 1 deletion lib/checks/multipleParents.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = {
id: 'multipleParents',
type: 'family',
signature: 'relationships',
help: ['addingAndCorrecting'],
help: ['addingAndCorrecting', 'parentRelationshipType'],
check: function(person, relationships, people) {

var parentRelationships = relationships.getParentRelationships();
Expand Down
3 changes: 2 additions & 1 deletion lib/help.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ module.exports = {
mergingDuplicates: 'https://familysearch.org/ask/salesforce/viewArticle?urlname=Merging-Duplicate-Records-in-Family-Tree-1381814853391',
nonexactDates: 'https://familysearch.org/ask/salesforce/viewArticle?urlname=Do-not-know-exact-birth-date-or-death-date',
recordHints: 'https://familysearch.org/ask/salesforce/viewArticle?urlname=Record-Hints',
standardizing: 'https://familysearch.org/ask/salesforce/viewArticle?urlname=Entering-Standardized-Dates-and-Places'
standardizing: 'https://familysearch.org/ask/salesforce/viewArticle?urlname=Entering-Standardized-Dates-and-Places',
parentRelationshipType: 'https://familysearch.org/ask/salesforce/viewArticle?urlname=Adding-Changing-and-Deleting-Relationship-Types-between-Parents-and-Children'
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"Family History"
],
"homepage": "https://github.com/genealogysystems/fs-check",
"version": "2.2.3",
"version": "2.2.4",
"repository": {
"type": "git",
"url": "[email protected]:genealogysystems/fs-check.git"
Expand Down

0 comments on commit bd3c795

Please sign in to comment.