diff --git a/src/js/assayJS.js b/src/js/assayJS.js index d9376c1ffdb9f1e133bb78bab21b0908ba140834..6cdae706ccfb32626250c04d86082d5e2d2e807d 100644 --- a/src/js/assayJS.js +++ b/src/js/assayJS.js @@ -404,20 +404,20 @@ window.Enunciate = /** @param {App.Entity.SlaveState} slave */ function Enunciat V.titleEnunciate = "Mom"; } else if (V.PC.mother === slave.ID || V.PC.father === slave.ID) { if (V.PC.title === 1) - V.titleEnunciate = "thon"; + V.titleEnunciate = "Thon"; else if (V.PC.title === 0) - V.titleEnunciate = "daughter"; + V.titleEnunciate = "Daughter"; } else if (areSisters(slave, V.PC) > 0) { if (V.PC.title === 1) { if (slave.actualAge < 18) - V.titleEnunciate = "bro"; + V.titleEnunciate = "Bro"; else - V.titleEnunciate = "brother"; + V.titleEnunciate = "Brother"; } else if (V.PC.title === 0) { if (slave.actualAge < 18) - V.titleEnunciate = "thith"; + V.titleEnunciate = "Thith"; else - V.titleEnunciate = "thithter"; + V.titleEnunciate = "Thithter"; } } } @@ -468,20 +468,20 @@ window.Enunciate = /** @param {App.Entity.SlaveState} slave */ function Enunciat V.titleEnunciate = "Mom"; } else if (V.PC.mother === slave.ID || V.PC.father === slave.ID) { if (V.PC.title === 1) - V.titleEnunciate = "son"; + V.titleEnunciate = "Son"; else if (V.PC.title === 0) - V.titleEnunciate = "daughter"; + V.titleEnunciate = "Daughter"; } else if (areSisters(slave, V.PC) > 0) { if (V.PC.title === 1) { if (slave.actualAge < 18) - V.titleEnunciate = "bro"; + V.titleEnunciate = "Bro"; else - V.titleEnunciate = "brother"; + V.titleEnunciate = "Brother"; } else if (V.PC.title === 0) { if (slave.actualAge < 18) - V.titleEnunciate = "sis"; + V.titleEnunciate = "Sis"; else - V.titleEnunciate = "sister"; + V.titleEnunciate = "Sister"; } } }