aboutsummaryrefslogtreecommitdiffhomepage
path: root/client
diff options
context:
space:
mode:
Diffstat (limited to 'client')
-rw-r--r--client/src/app/app.module.ts2
-rw-r--r--client/src/app/shared/i18n/i18n-utils.ts2
-rw-r--r--client/src/main.ts3
3 files changed, 4 insertions, 3 deletions
diff --git a/client/src/app/app.module.ts b/client/src/app/app.module.ts
index 9d655c523..118831ed3 100644
--- a/client/src/app/app.module.ts
+++ b/client/src/app/app.module.ts
@@ -71,7 +71,7 @@ export function metaFactory (serverService: ServerService): MetaLoader {
71 useFactory: (locale) => { 71 useFactory: (locale) => {
72 // On dev mode, test localization 72 // On dev mode, test localization
73 if (isOnDevLocale()) { 73 if (isOnDevLocale()) {
74 locale = getDevLocale() 74 locale = buildFileLocale(getDevLocale())
75 return require(`raw-loader!../locale/target/angular_${locale}.xml`) 75 return require(`raw-loader!../locale/target/angular_${locale}.xml`)
76 } 76 }
77 77
diff --git a/client/src/app/shared/i18n/i18n-utils.ts b/client/src/app/shared/i18n/i18n-utils.ts
index 1838dc752..30d65a2a2 100644
--- a/client/src/app/shared/i18n/i18n-utils.ts
+++ b/client/src/app/shared/i18n/i18n-utils.ts
@@ -5,7 +5,7 @@ function isOnDevLocale () {
5} 5}
6 6
7function getDevLocale () { 7function getDevLocale () {
8 return 'fr' 8 return 'fr-FR'
9} 9}
10 10
11export { 11export {
diff --git a/client/src/main.ts b/client/src/main.ts
index 061be17de..f456e89c5 100644
--- a/client/src/main.ts
+++ b/client/src/main.ts
@@ -6,6 +6,7 @@ import { environment } from './environments/environment'
6 6
7import { hmrBootstrap } from './hmr' 7import { hmrBootstrap } from './hmr'
8import { getDevLocale, isOnDevLocale } from '@app/shared/i18n/i18n-utils' 8import { getDevLocale, isOnDevLocale } from '@app/shared/i18n/i18n-utils'
9import { buildFileLocale } from '../../shared'
9 10
10let providers = [] 11let providers = []
11if (environment.production) { 12if (environment.production) {
@@ -14,7 +15,7 @@ if (environment.production) {
14 15
15// Template translation, should be in the bootstrap step 16// Template translation, should be in the bootstrap step
16if (isOnDevLocale()) { 17if (isOnDevLocale()) {
17 const locale = getDevLocale() 18 const locale = buildFileLocale(getDevLocale())
18 const translations = require(`raw-loader!./locale/target/angular_${locale}.xml`) 19 const translations = require(`raw-loader!./locale/target/angular_${locale}.xml`)
19 20
20 providers = [ 21 providers = [