Skip to content

Commit

Permalink
last changes for 1.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jamuhl committed Apr 19, 2014
1 parent 887596d commit 87c9da6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/i18next.js
Expand Up @@ -23,13 +23,13 @@

options = options || {};
options.resSetPath = options.resSetPath || 'locales/__lng__/__ns__.json';
options.sendMissing = options.saveMissing || false;
options.sendMissing = options.sendMissing || options.saveMissing || false;
options.detectLngFromPath = options.detectLngFromPath === undefined ? false : options.detectLngFromPath;
options.forceDetectLngFromPath = options.forceDetectLngFromPath !== true ? false : options.forceDetectLngFromPath;
options.detectLngFromHeaders = options.detectLngFromHeaders !== false ? true : options.detectLngFromHeaders;
options.supportedLngs = options.supportedLngs || [];
options.ignoreRoutes = options.ignoreRoutes || [];
options.cookieName = options.cookieName || 'i18next';
options.cookieName = options.cookieName || 'i18next';
resStore = options.resStore ? options.resStore : {};

// obsolete
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"author": "Jan Muehlemann <jan.muehlemann@gmail.com>",
"name": "i18next",
"description": "i18n made easy - full featured: middleware, template support plus clientside use",
"version": "1.7.1",
"version": "1.7.3",
"repository": {
"type": "git",
"url": "git://github.com/jamuhl/i18next-node.git"
Expand Down
1 change: 1 addition & 0 deletions releasenotes.md
@@ -1,6 +1,7 @@
### v1.7.3
- updated client to 1.7.3
- fixes issue with using WT with filesync [issue 116](https://github.com/jamuhl/i18next-node/issues/116)
- fixes issue with detectLngFromPath if route level [pullrequest 121](https://github.com/jamuhl/i18next-node/pull/121)

### v1.7.1
- update client for some typos
Expand Down

0 comments on commit 87c9da6

Please sign in to comment.