summaryrefslogtreecommitdiff
path: root/includes/util/pronouns.inc
blob: b7c8dd49b870d7b093d063ad9e9c9a48e458d07c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

function getMemberPronouns(?string $pronouns): ?array {
    return [
        "gender" => "invalid",
        "gender:fr" => "invalide",
        "object" => "this pony",
        "person" => "pony",
        "possessive_det" => "this pony's",
        "possessive_pro" => "this pony's",
        "reflexive" => "this pony",
        "subjective" => "this pony",
        "third" => true,
        "color" => "success"
    ];
}