hayksaakian / cms-on-sails

CMS written with sails.js -- primarily used for my personal site
http://hayksaakian.com
44 stars 16 forks source link

supporting i18n #1

Open flipflopsimsommer opened 10 years ago

flipflopsimsommer commented 10 years ago

supporting multi language is something important for cms.

/config/i18n.js

module.exports.i18n = {
  // Which locales are supported?
  locales: ['en', 'de', 'it'],
  // Where are your locale translations located?
  localesDirectory: '/config/locales'
};

in your policie:

var locale = undefined;
if(typeof req.session.user == 'object' && typeof req.session.user.locale !== 'undefined'){
    locale = req.session.user.locale;
    sails.log.info('choos language in profile ' + locale);
}
return ok();

then you just use res.__('test')

enable autoupdate in lang.json file.

hayksaakian commented 10 years ago

If balderdashy/sails accepts the pull, i think i could work this in

one problem i see is:

if the visitor to the website is not logged in as a user, the locale will never be set.

flipflopsimsommer commented 10 years ago

i hope the accept it soon, it's only 1 line and by default nothing chances. as i understand and combined with my code it would work something linke this

okey just realised i should past the defaultLocale as well i will make a new pull request sails

flipflopsimsommer commented 10 years ago

updated the url to the new pull request