Language support for api text format=bibtext
I've looked up this issue in the forums and developer site but couldn't find an answer. Apologies if it's already been discussed.
I am using BibBase to embed one of my Zotero collections on my website, which makes a call to the Zotero API for format=bibtex.
The API URL I'm using is this:
https://api.zotero.org/users/3402298/collections/UWTASPK8/items?v=3&key=3OpwCGYLhA69xH2Vze8NZfBO&format=bibtex&limit=10
It returns results in English (e.g., multi-authors papers appear as "author1 AND author2"), but I would like them to appear in Spanish (e.g., author1 Y author2 )
The API documentation notes the parameter "locale" can be added for format=bib. https://www.zotero.org/support/dev/web_api/v3/basics
I tried adding this parameter (url below) but it doesn't seem to work for format=bibtext
The below URL still returns results with English localization
https://api.zotero.org/users/3402298/collections/UWTASPK8/items?v=3&key=3OpwCGYLhA69xH2Vze8NZfBO&format=bibtex&locale=en-MX&limit=10
Am I missing something? How can I get the results to come up with Spanish?
I am using BibBase to embed one of my Zotero collections on my website, which makes a call to the Zotero API for format=bibtex.
The API URL I'm using is this:
https://api.zotero.org/users/3402298/collections/UWTASPK8/items?v=3&key=3OpwCGYLhA69xH2Vze8NZfBO&format=bibtex&limit=10
It returns results in English (e.g., multi-authors papers appear as "author1 AND author2"), but I would like them to appear in Spanish (e.g., author1 Y author2 )
The API documentation notes the parameter "locale" can be added for format=bib. https://www.zotero.org/support/dev/web_api/v3/basics
I tried adding this parameter (url below) but it doesn't seem to work for format=bibtext
The below URL still returns results with English localization
https://api.zotero.org/users/3402298/collections/UWTASPK8/items?v=3&key=3OpwCGYLhA69xH2Vze8NZfBO&format=bibtex&locale=en-MX&limit=10
Am I missing something? How can I get the results to come up with Spanish?
Upgrade Storage
https://api.zotero.org/users/3402298/collections/UWTASPK8/items?v=3&key=3OpwCGYLhA69xH2Vze8NZfBO&format=bibtex&locale=es-MX&limit=10
This returns English (i.e., "and" instead of "y" )
I also tried the other available locales according to https://github.com/citation-style-language/locales linked from the API documentation.
es-ES and es-CL also return English.
Also tried lowercase versions (es-es, es-mx, es-cl) just in case but no cigar.
thank you again