Date in French in Vancouver style citation Zotero version 5.0.55
dear colleague,
I use the last release of Zotero and when I add a literature reference using the Vancouver style citation tool, the date is written in French language "jour mois année" instead of the expected "year month day".
Has anyone met the same issue?
Could you please help me?
Thank you
I use the last release of Zotero and when I add a literature reference using the Vancouver style citation tool, the date is written in French language "jour mois année" instead of the expected "year month day".
Has anyone met the same issue?
Could you please help me?
Thank you
This is an old discussion that has not been active in a long time. Before commenting here, you should strongly consider starting a new discussion instead. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
Thank you
La même question m'a été posée : quelle solution avez-vous trouvée?
Merci,
Bien à vous,
Frédérique
The basic answer is that you either need to change the localized French date in the locale section of the style or you need to replace the date with hard-coded date-parts
<locale xml:lang="fr">
<date form="text" delimiter=" ">
<date-part name="day"/>
<date-part name="month" form="short" strip-periods="true"/>
<date-part name="year"/>
</date>
</locale>
2002 Jul 25
Year month as short text day
<locale xml:lang="fr">
<date form="text" delimiter=" ">
<date-part name="year"/>
<date-part name="month" form="short" strip-periods="true"/>
<date-part name="day"/>
</date>
</locale>
<locale xml:lang="fr">
<date form="text" delimiter=" ">
<date-part name="year"/>
<date-part name="month" form="short" strip-periods="true"/>
<date-part name="day"/>
</date>
<term name="month-07" form="short">Jul</term>
<!--add all other months-->
</locale>
<locale xml:lang="fr">
<date form="text" delimiter=" ">
<date-part name="year"/>
<date-part name="month" form="short" strip-periods="true"/>
<date-part name="day"/>
</date>
<terms>
<term name="month-07" form="short">Jul</term>
<!--add all other months-->
</terms>
</locale>
Zotero Style Editor did not display an error message for that.