From 15bb1453008237edbc2cb4e82a9eb44db6f99794 Mon Sep 17 00:00:00 2001 From: Minteck Date: Fri, 24 Feb 2023 11:45:36 +0100 Subject: Updated 10 files (automated) --- includes/details.inc | 6 ++++++ includes/fullbanner.inc | 10 +++++++--- includes/functions.inc | 21 +++++---------------- includes/member.inc | 14 ++++++++------ includes/metadata.inc | 2 ++ 5 files changed, 28 insertions(+), 25 deletions(-) (limited to 'includes') diff --git a/includes/details.inc b/includes/details.inc index ce1add6..415e313 100644 --- a/includes/details.inc +++ b/includes/details.inc @@ -112,6 +112,9 @@ case "pan": echo "Pansexual"; break; + case "poly": + echo "Polysexual"; + break; } ?> (poly) @@ -142,6 +145,9 @@ case "pan": echo "Panromantic"; break; + case "poly": + echo "Polyromantic"; + break; } ?> (poly) diff --git a/includes/fullbanner.inc b/includes/fullbanner.inc index f6741c9..4f78101 100644 --- a/includes/fullbanner.inc +++ b/includes/fullbanner.inc @@ -1,6 +1,6 @@
@@ -14,11 +14,15 @@ -
+
+
.
+
-
+
+
is on a trip to Equestria. .
+
\ No newline at end of file diff --git a/includes/functions.inc b/includes/functions.inc index 5effe5b..7a6ad5d 100644 --- a/includes/functions.inc +++ b/includes/functions.inc @@ -388,25 +388,19 @@ if (!function_exists("timeAgo")) { $time = strtotime($time); } - $periods = ["sec.", "mn.", "hr.", "d.", "wk.", "mo.", "y.", "ages"]; - $periods_fr = ["sec.", "mn.", "hr.", "j.", "sem.", "m.", "a.", "des années"]; + $periods = ["sec", "min", "hr", "d", "wk", "mo", "y", "ages"]; + $periods_fr = $periods; $lengths = array("60", "60", "24", "7", "4.35", "12", "100"); $now = time(); $difference = $now - $time; if ($difference <= 10 && $difference >= 0) { - if ($french) { - return $tense_fr = "à l'instant"; - } else { - return $tense = "now"; - } + return $tense = "now"; } elseif ($difference > 0) { $tense = "ago"; - $tense_fr = "il y a"; } else { $tense = "later"; - $tense_fr = "dans"; } for ($j = 0; $difference >= $lengths[$j] && $j < count($lengths)-1; $j++) { @@ -415,13 +409,8 @@ if (!function_exists("timeAgo")) { $difference = round($difference); - if ($french) { - $period = $periods_fr[$j]; - return "{$tense_fr} {$difference} {$period}"; - } else { - $period = $periods[$j]; - return "{$difference} {$period} {$tense}"; - } + $period = $periods[$j]; + return "{$difference} {$period} {$tense}"; } } diff --git a/includes/member.inc b/includes/member.inc index 66d0798..5292dc1 100644 --- a/includes/member.inc +++ b/includes/member.inc @@ -58,15 +58,16 @@ if ($memberData["name"] === "fusion") {

-
-

-

-

- +
+

Hello there!

+

I'm currently not totally sure who I am (it's a thing that can happen with plurality), but I am using this pony as a temporary identity to stay calm and not panic while I figure out what is going on and who I am.

+

I can either be an existing headmate who cannot work out they are fronting (this can sometimes happen when one of us gets pushed out of front), multiple headmates blurring who cannot work out who we are, a new pony trying to figure out their identity (this can sometimes take a while), or some other plurality shenanigans.

+ In all cases, feel free to ask!
+

-
+

@@ -79,6 +80,7 @@ if ($memberData["name"] === "fusion") {
+

diff --git a/includes/metadata.inc b/includes/metadata.inc index 10a87ab..d903010 100644 --- a/includes/metadata.inc +++ b/includes/metadata.inc @@ -71,6 +71,7 @@ if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/includes/data/metadata/" . $member +
-- cgit