Skip to content

Commit

Permalink
Fixed French locale typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nmussy committed Nov 16, 2015
1 parent 003663c commit 7e29506
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
---------

### 0.2.3 November 16, 2015

* Fixed French locale typo.

### 0.2.2 July 30, 2013

* Optimized German version.
Expand Down
2 changes: 1 addition & 1 deletion dist/readint.js
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ module.exports = {
'LTRlevels' : [],
'values': [
{"zero": 0, "un": 1, "deux": 2, "troi": 3, "quatre": 4, "cinq": 5, "six": 6, "sept": 7, "huit": 8, "neuf": 9, "onze": 11, "douze": 12, "treize": 13, "quatorze": 14, "quinze": 15, "seize": 16},
{"dix": 10, "vingt": 20, "trente": 30, "quarente": 40, "cinquante": 50, "soixante": 60, "soixante-dix": 70, "septante": 70, "quatre-vingt": 80, "octante": 80, "quatre-vingt-dix": 90, "nonante": 90},
{"dix": 10, "vingt": 20, "trente": 30, "quarante": 40, "cinquante": 50, "soixante": 60, "soixante-dix": 70, "septante": 70, "quatre-vingt": 80, "octante": 80, "quatre-vingt-dix": 90, "nonante": 90},
{"cent": 100},
{"mille": 1000},
{"million": 1000000},
Expand Down
2 changes: 1 addition & 1 deletion dist/readint.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion locales/fr.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = {
'LTRlevels' : [],
'values': [
{"zero": 0, "un": 1, "deux": 2, "troi": 3, "quatre": 4, "cinq": 5, "six": 6, "sept": 7, "huit": 8, "neuf": 9, "onze": 11, "douze": 12, "treize": 13, "quatorze": 14, "quinze": 15, "seize": 16},
{"dix": 10, "vingt": 20, "trente": 30, "quarente": 40, "cinquante": 50, "soixante": 60, "soixante-dix": 70, "septante": 70, "quatre-vingt": 80, "octante": 80, "quatre-vingt-dix": 90, "nonante": 90},
{"dix": 10, "vingt": 20, "trente": 30, "quarante": 40, "cinquante": 50, "soixante": 60, "soixante-dix": 70, "septante": 70, "quatre-vingt": 80, "octante": 80, "quatre-vingt-dix": 90, "nonante": 90},
{"cent": 100},
{"mille": 1000},
{"million": 1000000},
Expand Down
4 changes: 2 additions & 2 deletions test/readint.js
Original file line number Diff line number Diff line change
Expand Up @@ -386,8 +386,8 @@ describe('French:', function() {
assert(39 == readint('trente-neuf', 'fr'));
});

it('quarente', function () {
assert(40 == readint('quarente', 'fr'));
it('quarante', function () {
assert(40 == readint('quarante', 'fr'));
});

it('cinquante', function () {
Expand Down

0 comments on commit 7e29506

Please sign in to comment.