Skip to content

Commit

Permalink
Changed store engine path
Browse files Browse the repository at this point in the history
  • Loading branch information
naholyr committed Jan 30, 2011
1 parent 7916a67 commit 0fe74aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Expand Up @@ -74,7 +74,7 @@ exports.enableForApp = function enableForApp(app, options, callback) {
};

exports.localeSessKey = 'locale';
exports.store = require('./store-module');
exports.store = require('./stores/module');
exports.pluralHandler = require('./plural-form');
exports.defaultLocale = 'en';
exports.defaultCatalogue = 'messages';
Expand All @@ -84,7 +84,7 @@ exports.availableLocales = undefined; // any locale available in store
exports.setStore = function(store, config, callback) {
try {
if (typeof store == 'string') {
this.store = require('./store-' + store);
this.store = require('./stores/' + store);
} else if (typeof store != 'undefined') {
this.store = store;
}
Expand Down
File renamed without changes.

0 comments on commit 0fe74aa

Please sign in to comment.