Skip to content

Commit

Permalink
[build] 2.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
kemar committed Jul 7, 2020
1 parent 5bf9507 commit 047f63b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions dist/vue-gettext.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* vue-gettext v2.1.9
* vue-gettext v2.1.10
* (c) 2020 Polyconseil
* @license MIT
*/
Expand Down Expand Up @@ -307,7 +307,7 @@
* @return {String} The translated string
*/
'gettext': function (msgid) {
return this.getTranslation(msgid)
return translate.getTranslation(msgid)
},

/*
Expand All @@ -320,7 +320,7 @@
* @return {String} The translated string
*/
'pgettext': function (context, msgid) {
return this.getTranslation(msgid, 1, context)
return translate.getTranslation(msgid, 1, context)
},

/*
Expand All @@ -335,7 +335,7 @@
* @return {String} The translated string
*/
'ngettext': function (msgid, plural, n) {
return this.getTranslation(msgid, n, null, plural)
return translate.getTranslation(msgid, n, null, plural)
},

/*
Expand All @@ -351,7 +351,7 @@
* @return {String} The translated string
*/
'npgettext': function (context, msgid, plural, n) {
return this.getTranslation(msgid, n, context, plural)
return translate.getTranslation(msgid, n, context, plural)
},

/*
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 047f63b

Please sign in to comment.