Localization
Alpaca comes with a number of translations : https://github.com/gitana/alpaca/tree/master/src/js/messages/i18n
To activate the messages in a language you have to add "locale": "es_ES" in the view.json.
{
"locale": "es_ES"
}
You can also add your customes translations in the view.json :
{
"messages": {
"es_ES": {
"stringValueTooLarge": "Mira, caballero, tu nombre es demasiado largo!"
}
}
}
For more info : http://www.alpacajs.org/docs/api/i18n.html
Updated less than a minute ago