seboettg / citeproc-php

Full-featured CSL 1.0.1 processor for PHP
MIT License
76 stars 39 forks source link

Title case, record with no language, english case is applied instead of desired locale #162

Open glorieux-f opened 1 year ago

glorieux-f commented 1 year ago

Please follow the general troubleshooting steps first:

Bug reports:

citeproc-php, locale fr-FR or en-US, case of container-title is modified when !isset(language) || language == "en". Other bug, capitalizeForTitle seems to be not unicode, friendly (? Util/StringHelper.php#L96 )

zotero desktop, locale fr-FR, if no language, case is modified according to the locale (fr)

zotero desktop, locale en-US, if no language, case is modified according to the locale (en)

Workaround, ensure language for each record.

Proposed fix Rendering/Text.php#L92

    $lang = (isset($data->language)) ? 
        $data->language : 
        strtok(CiteProc::getContext()->getLocale()->getLanguage(), '-');

Used CSL stylesheet:

apa.csl#L1217

    <text variable="container-title" font-style="italic" text-case="title"/>

Used CSL metadata

[
    {
        "id": "http://zotero.org/groups/5048422/items/S4RL74HB",
        "type": "article-journal",
        "container-title": "L’Éducateur : organe de la Société pédagogique de la Suisse romande",
        "issue": "3",
        "page": "33-39",
        "title": "no language",
        "volume": "LVIII",
        "author": [
            {
                "family": "Piaget",
                "given": "Jean"
            }
        ],
        "issued": {
            "date-parts": [
                [
                    "1922"
                ]
            ]
        }
    },
    {
        "id": "http://zotero.org/groups/5048422/items/S4RL74HB",
        "type": "article-journal",
        "container-title": "L’Éducateur : organe de la Société pédagogique de la Suisse romande",
        "language": "fr",
        "issue": "3",
        "page": "33-39",
        "title": "language=fr",
        "volume": "LVIII",
        "author": [
            {
                "family": "Piaget",
                "given": "Jean"
            }
        ],
        "issued": {
            "date-parts": [
                [
                    "1922"
                ]
            ]
        }
    },
    {
        "id": "http://zotero.org/groups/5048422/items/S4RL74HB",
        "type": "article-journal",
        "container-title": "L’Éducateur : organe de la Société pédagogique de la Suisse romande",
        "language": "en",
        "issue": "3",
        "page": "33-39",
        "title": "language=en",
        "volume": "LVIII",
        "author": [
            {
                "family": "Piaget",
                "given": "Jean"
            }
        ],
        "issued": {
            "date-parts": [
                [
                    "1922"
                ]
            ]
        }
    }
]