I’m trying to follow an angularJS tutorial here (http://www.ng-newsletter.com/posts/angular-translate.html), but it’s breaking quite early on in the process with this block of code:
app.config(function ['$translateProvider', ($translateProvider) {
$translateProvider.translations({
HEADLINE: 'Hello there, This is my awesome app!',
INTRO_TEXT: 'And it has i18n support!'
});
}]);
I can’t seem to debug my app either, there’s no error output or anything, just blank screens everywhere. (using xcode if that helps)