feat(i18n): extract messages

This commit is contained in:
Victor Berchet
2016-06-01 14:58:11 -07:00
parent 7cefec77ef
commit ac1156739d
12 changed files with 278 additions and 19 deletions

View File

@ -190,7 +190,7 @@ export const HTTP_PROVIDERS: any[] = [
{provide: XSRFStrategy, useValue: new CookieXSRFStrategy()},
];
function httpFactory(xhrBackend: XHRBackend, requestOptions: RequestOptions): Http {
export function httpFactory(xhrBackend: XHRBackend, requestOptions: RequestOptions): Http {
return new Http(xhrBackend, requestOptions);
}