Skip to content

Commit 8f09834

Browse files
R3tepiamkun
andauthored
fix: fix French [fr] local ordinal (#1932)
Co-authored-by: iamkun <[email protected]>
1 parent 7b4a99c commit 8f09834

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/locale/fr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const locale = {
3434
yy: '%d ans'
3535
},
3636
ordinal: (n) => {
37-
const o = n === 1 ? 'er' : ''
37+
const o = n === 1 ? 'er' : 'e'
3838
return `${n}${o}`
3939
}
4040
}

0 commit comments

Comments
 (0)