Skip to content
This repository has been archived by the owner on Dec 15, 2021. It is now read-only.

Commit

Permalink
Apparently some parsers don't like backticks, replace with quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
MattyRad committed Jul 15, 2016
1 parent 7397750 commit 0bdd42b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ module.exports = {
}

if (window.console) {
console.warn(`Translations exist for the locale ${this.$root.locale}, but there is not an entry for '${key}'`)
console.warn("Translations exist for the locale " + this.$root.locale + ", but there is not an entry for '" + key + "'")
}
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
},
"name": "voo-i18n",
"description": "A small package for implementing translations in Vue.js",
"version": "1.0.2",
"version": "1.0.3",
"repository": {
"url": "git+https://github.com/MattyRad/vue-i18n.git"
},
Expand Down

0 comments on commit 0bdd42b

Please sign in to comment.