core: /assets/i18n/en.json NOT FOUND

I realize this is a common issue and have been scouring this repo’s support tickets and Stackoverflow looking for why I can’t get this working. None of the many suggestions I’ve tried have worked. I’m confused because my setup is simple and in no way (that I can see) different from the example code setup shared in this repo.
I’m using Angular 5.1.0 along with Angular CLI 1.7. Webpack and ngx-translate versions are as follows:
"@ngx-translate/core": "^9.1.1",
"@ngx-translate/http-loader": "^2.0.1",
"webpack": "~3.8.1"
http://localhost:4200/src/assets/i18n/en.json resolves to the file correctly in the browser, so the file is in the correct location for the default configuration outlined in the ngx-translate README.
Here are the relevant files:
app.component.ts
import { ActivatedRoute } from '@angular/router';
import { Component, ElementRef, HostListener, OnInit, ViewChild, AfterViewInit, ErrorHandler } from '@angular/core';
import {TranslateService} from '@ngx-translate/core';
/*
* Main app component that houses all views.
*/
@Component({
selector: 'app-comp',
templateUrl: './app.component.html'
})
export class AppComponent {
store: any;
constructor(private route: ActivatedRoute, private translate: TranslateService) {
// translate.addLangs(['en', 'fr']);
translate.setDefaultLang('en');
}
}
app.module.ts
import { MaterialModule } from './material.module';
import { BrowserModule, Title } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { TranslateModule, TranslateLoader } from '@ngx-translate/core';
import { TranslateHttpLoader } from '@ngx-translate/http-loader';
import { HttpClient, HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http';
import { HttpModule } from '@angular/http';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { RootComponent } from './root.component';
import { AppComponent } from './app.component';
import { AppRoutingModule } from './app.routing';
import { InMemoryWebApiModule } from 'angular-in-memory-web-api';
import { InMemoryDataService } from '../db/in-memory-data.service';
import { AppInterceptor } from './_core/app.interceptor';
import { FooterComponent } from './_core/footer/footer.component';
import { HeaderComponent } from './_core/header/header.component';
import { DataService } from './_core/data.service';
import { DataResolver } from './_core/data.resolver';
import { environment } from '../environments/environment';
import { AppGuard } from './app.guard';
import { MessageService } from './message.service';
import { GatewayService } from './shared/gateway.service';
import { WindowRefService } from './window-ref.service';
/*
* Main module for the app that boostraps everything.
*/
@NgModule({
imports: [
BrowserModule,
HttpClientModule,
TranslateModule.forRoot({
loader: {
provide: TranslateLoader,
useFactory: HttpLoaderFactory,
deps: [HttpClient]
}
}),
HttpModule,
FormsModule,
AppRoutingModule,
BrowserAnimationsModule,
InMemoryWebApiModule.forRoot(InMemoryDataService, { dataEncapsulation: false }) // Remove to use real HTTP calls
],
declarations: [
RootComponent,
HeaderComponent,
AppComponent,
FooterComponent
],
providers: [
AppGuard,
DataService,
DataResolver,
MessageService,
GatewayService,
WindowRefService,
{
provide: HTTP_INTERCEPTORS,
useClass: AppInterceptor,
multi: true,
}
],
bootstrap: [RootComponent]
})
export class AppModule { }
// required for AOT compilation
export function HttpLoaderFactory(http: HttpClient) {
return new TranslateHttpLoader(http);
}
I’ve tried all the common solutions, including using the CopyWebpackPlugin to try to resolve the webpack bundling, adding the i18n directory to the assets list in angular-cli.json, and explicitly passing my path to TranslateHttpLoader like so:
return new TranslateHttpLoader(http, "./assets/i18n/", ".json");
None of these approaches have worked.
Is there something very basic I’m missing in my setup? I feel like I’ve just been looking at it too long at this point. 😕
About this issue
- Original URL
- State: open
- Created 6 years ago
- Reactions: 7
- Comments: 24
@ellenchristine in your angular-cli the prefix and assets should refer to the paths as shown below.
Then refer it like this in your root module
I had the same problem, the InMemoryDataService intercepts your requests to the real server. To fix this you can set passThruUnknownUrl: true like this:
InMemoryDataService, {dataEncapsulation: false, passThruUnknownUrl: true}
it works for me
https://stackoverflow.com/questions/44756251/json-language-files-are-not-found-ngx-translate-angular-cli/51121032#51121032
Worked for me too. return new TranslateHttpLoader(http, “/BASEHREF/assests/i18n”, “.json”);
It works
Worked for me, if I disabled InMemoryDataService would work but not when enabled so the passThruUnknownUrl config property did the trick.
@pookdeveloper thanks, worked for me
try this 2 option…
export const environment = { production: true, appRootPrefix: ‘/<<Your project name>>’ };
export function createTranslateLoader(http: HttpClient) { return new TranslateHttpLoader(http, ‘./assets/i18n/’, ‘.json’); }
Check your angular cli configuration, I’m pretty sure the mistake comes from here.
You can look in
apps > prefix
and add its value before./assets/i18n/
.