18 lines
392 B
JavaScript
18 lines
392 B
JavaScript
/**
|
|
* Internationalization / Localization Settings
|
|
*
|
|
* If your app will touch people from all over the world, i18n (or internationalization)
|
|
* may be an important part of your international strategy.
|
|
*
|
|
*
|
|
* For more information, check out:
|
|
* http://sailsjs.org/#documentation
|
|
*/
|
|
|
|
module.exports.i18n = {
|
|
|
|
// Which locales are supported?
|
|
locales: ['en', 'es', 'fr', 'de']
|
|
|
|
};
|