aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/main.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-08-16 11:48:48 +0200
committerChocobozzz <me@florianbigard.com>2018-08-27 09:41:54 +0200
commitc0ffdd09582fa320446a12ada1d382fedcfcd82a (patch)
tree35b2d46b446e09aafc543f3716724499f2342d84 /client/src/main.ts
parent5d128505dca854cb7225624936d1053f06473260 (diff)
downloadPeerTube-c0ffdd09582fa320446a12ada1d382fedcfcd82a.tar.gz
PeerTube-c0ffdd09582fa320446a12ada1d382fedcfcd82a.tar.zst
PeerTube-c0ffdd09582fa320446a12ada1d382fedcfcd82a.zip
Fix dev locale
Diffstat (limited to 'client/src/main.ts')
-rw-r--r--client/src/main.ts3
1 files changed, 2 insertions, 1 deletions
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 = [