Skip to content

Commit

Permalink
Merge pull request #19 from skimcom/master
Browse files Browse the repository at this point in the history
plurals fix
  • Loading branch information
masylum committed Mar 22, 2012
2 parents 2f8268e + ac619e0 commit 0c53e05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/helpers/plurals.js
Expand Up @@ -84,7 +84,7 @@ module.exports = function plurals(locale) {
// 2 Plurals
default:
if (parts.length === 2) {
plurals(parts[0]);
return plurals(parts[0]);
} else {
return function (n) {
return n === 1 ? 0 : 1;
Expand Down

0 comments on commit 0c53e05

Please sign in to comment.