diff --git a/langs/en/labels.json b/langs/en/labels.json index 6a42754..26f9989 100644 --- a/langs/en/labels.json +++ b/langs/en/labels.json @@ -31,14 +31,6 @@ "Total": "Total", "Yes": "Yes", "No": "No", - "Newsletter": "Newsletter", - "Print": "Print", - "Email and Print": "Email and Print", - "Email+Print": "Email+Print", - "Children": "Children", - "Born": "Born", - "Graduated": "Graduated", - "Okay to use photos?": "Okay to use photos?", "Adding Person": "Adding Person", "Editing Person": "Editing {person}", "Adding camper": "Adding Camper", @@ -49,14 +41,7 @@ "Editing youth": "Editing Youth {person}", "Delete Person": "Delete Person", "Recent Payments": "Recent Payments", - "Interests": "Interests", - "Event List": "Event List", - "Popularity": "Popularity", - "Event": "Event", "Download Reports": "Download Reports", - "Member Directory": "Member Directory", - "Expiring Memberships": "Expiring Memberships", - "Family List": "Family List", "Office (ODT)": "Office (ODT)", "Spreadsheet (ODS)": "Spreadsheet (ODS)", "HTML": "HTML", @@ -75,11 +60,5 @@ "Free": "Free", "Expires": "Expires", "Choose...": "Choose...", - "Mark as paid": "Mark as paid", - "This payment is a membership renewal (automatically add one year to the family's membership)": "This payment is a membership renewal (automatically add one year to the family's membership)", - "All members expired or expiring within a month.": "All members expired or expiring within a month.", - "All the data from the member directory in a spreadsheet.": "All the data from the member directory in a spreadsheet.", - "A formatted and up-to-date HACHE member directory.": "A formatted and up-to-date HACHE member directory.", - "Member wishes to be remain private (excluded from member directory)": "Member wishes to be remain private (excluded from member directory)", - "Private": "Private" + "Mark as paid": "Mark as paid" } diff --git a/langs/en/messages.json b/langs/en/messages.json index d077085..ed98452 100644 --- a/langs/en/messages.json +++ b/langs/en/messages.json @@ -5,12 +5,6 @@ "Family deleted.": "Family deleted.", "Are you sure you want to delete this person?": "Are you sure you want to delete this person?", "This action cannot be undone!": "This action cannot be undone!", - "To remove a child, delete the contents of the Name box.": "To remove a child, delete the contents of the Name box.", - "No interests selected.": "No interests selected.", - "Events updated.": "Events updated.", - "You agree to use the information in this directory for homeschool use ONLY. All other purposes, such as soliciting, is strictly prohibited.": "You agree to use the information in this directory for homeschool use ONLY. All other purposes, such as soliciting, is strictly prohibited.", "Payment saved.": "Payment saved.", - "Only showing {x}s.": "Only showing {x}s.", - "This family wishes to remain private. Do not share this information, even with other HACHE members.": "This family wishes to remain private. Do not share this information, even with other HACHE members.", - "That email address is already in use with another family.": "That email address is already in use with another family." + "Only showing {x}s.": "Only showing {x}s." } diff --git a/langs/en/titles.json b/langs/en/titles.json index 58ed141..6bf9fc0 100644 --- a/langs/en/titles.json +++ b/langs/en/titles.json @@ -2,11 +2,6 @@ "Home": "Home", "People": "People", "Families": "Families", - "Members": "Members", - "View Family": "View Family", - "Family": "Family", - "Delete Family": "Delete Family", - "Events": "Events", "Reports": "Reports", "Payments": "Payments", "Add Payment": "Add Payment", diff --git a/lib/template_child_entry.php b/lib/template_child_entry.php deleted file mode 100644 index 390c3d6..0000000 --- a/lib/template_child_entry.php +++ /dev/null @@ -1,89 +0,0 @@ - '', 'month' => 1, 'year' => date('Y', strtotime('now - 10 years')), 'graduated' => false]; - -if (isset($childid) && $database->has('people', ['personid' => $childid])) { - $randomid = $childid; - $chinfo = $database->get('people', ['name', 'birthday', 'graduated'], ['personid' => $childid]); - $childinfo['name'] = $chinfo['name']; - $childinfo['graduated'] = $chinfo['graduated'] == true; - $childinfo['month'] = date('m', strtotime($chinfo['birthday'])); - $childinfo['year'] = date('Y', strtotime($chinfo['birthday'])); -} else { - do { - $randomid = mt_rand(0, 9999999999); - } while ($database->has('people', ['personid' => $randomid])); -} -?> - -
- -
-
-
- -
-
- -
- -
-
-
- -
-
- -
-
- -
- -
-
-
- -
-
- -
-
- -
- -
-
-
- -
-
- -
- > - -
-
-
-
-
\ No newline at end of file