Skip to content

Commit

Permalink
[build] 2.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
kemar committed Jan 21, 2020
1 parent 70bd435 commit 9147fb6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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.1.7
* vue-gettext v2.1.8
* (c) 2020 Polyconseil
* @license MIT
*/
Expand Down Expand Up @@ -53,7 +53,7 @@

getTranslationIndex: function (languageCode, n) {

n = parseInt(n);
n = Number(n);
n = typeof n === 'number' && isNaN(n) ? 1 : n; // Fallback to singular.

// Extract the ISO 639 language code. The ISO 639 standard defines
Expand Down
4 changes: 2 additions & 2 deletions 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 9147fb6

Please sign in to comment.