Skip to content

Commit

Permalink
Amend short form of French months (continuing #64)
Browse files Browse the repository at this point in the history
The Firefox French language pack contains some mistakes regarding
the short form of months. As a consequence, French month parsing
didn't work.

Please note that these values aren't even the correct abbreviations
but only the three or four first letters of the correct abbreviations.
See the French CSL locale for the correct abbreviations.
  • Loading branch information
gracile-fr committed Jan 16, 2017
1 parent aa78387 commit 695cb95
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions resource/schema/dateFormats.json
Expand Up @@ -306,13 +306,13 @@
"mar",
"avr",
"mai",
"jun",
"jul",
"juin",
"juil",
"aoû",
"sep",
"oct",
"nov",
"dec"
"déc"
],
"long": [
"janvier",
Expand Down
2 changes: 1 addition & 1 deletion test/tests/dateTest.js
Expand Up @@ -9,7 +9,7 @@ describe("Zotero.Date", function() {
"October", "November", "December"
];
var frenchShort = [
"jan", "fév", "mar", "avr", "mai", "jun", "jul", "aoû", "sep", "oct", "nov", "dec"
"jan", "fév", "mar", "avr", "mai", "juin", "juil", "aoû", "sep", "oct", "nov", "déc"
];
var frenchLong = [
"janvier", "février", "mars", "avril", "mai", "juin", "juillet", "août", "septembre",
Expand Down

0 comments on commit 695cb95

Please sign in to comment.