Skip to content

Commit

Permalink
[build] 2.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
kemar committed May 3, 2017
1 parent 963b93d commit d74017e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dist/vue-gettext.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* vue-gettext v2.0.10
* vue-gettext v2.0.11
* (c) 2017 Polyconseil
* @license MIT
*/
Expand Down Expand Up @@ -126,7 +126,7 @@ var plurals = {
return (n === 1) ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2
case 'sl': // Slovenian
// 4 forms
return (n % 100 === 1 ? 0 : n % 100 === 2 ? 1 : n % 100 === 3 || n % 100 === 4 ? 2 : 3)
return (n % 100 === 1 ? 1 : n % 100 === 2 ? 2 : n % 100 === 3 || n % 100 === 4 ? 3 : 0)
case 'mt': // Maltese
// 4 forms
return (n === 1 ? 0 : n === 0 || (n % 100 > 1 && n % 100 < 11) ? 1 : (n % 100 > 10 && n % 100 < 20) ? 2 : 3)
Expand Down
2 changes: 1 addition & 1 deletion dist/vue-gettext.min.js

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

0 comments on commit d74017e

Please sign in to comment.