]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - scripts/i18n/create-custom-files.ts
Merge branch 'release/4.2.0' into develop
[github/Chocobozzz/PeerTube.git] / scripts / i18n / create-custom-files.ts
index d9328b1257879f1f6159e5db9ca07dc53f04bd5c..e52909c433987dacc2a9189c5d48e71d1b520190 100755 (executable)
@@ -1,9 +1,7 @@
-import { registerTSPaths } from '../../server/helpers/register-ts-paths'
-registerTSPaths()
-
 import { writeJSON } from 'fs-extra'
 import { values } from 'lodash'
 import { join } from 'path'
+import { root } from '@shared/core-utils'
 import {
   buildLanguages,
   VIDEO_CATEGORIES,
@@ -16,7 +14,7 @@ import {
 } from '../../server/initializers/constants'
 import { I18N_LOCALES } from '../../shared/core-utils/i18n'
 
-const videojs = require(join(__dirname, '../../../client/src/locale/videojs.en-US.json'))
+const videojs = require(join(root(), 'client', 'src', 'locale', 'videojs.en-US.json'))
 const playerKeys = {
   'Quality': 'Quality',
   'Auto': 'Auto',
@@ -52,10 +50,16 @@ const playerKeys = {
   'Buffer State': 'Buffer State',
   'Live Latency': 'Live Latency',
   'P2P': 'P2P',
+  '{1} seconds': '{1} seconds',
   'enabled': 'enabled',
+  'Playlist: {1}': 'Playlist: {1}',
   'disabled': 'disabled',
   '  off': '  off',
-  'Player mode': 'Player mode'
+  'Player mode': 'Player mode',
+  'Play in loop': 'Play in loop',
+  'This live has not started yet.': 'This live has not started yet.',
+  'This live has ended.': 'This live has ended.',
+  'The video failed to play, will try to fast forward.': 'The video failed to play, will try to fast forward.'
 }
 Object.assign(playerKeys, videojs)
 
@@ -100,7 +104,7 @@ writeAll().catch(err => {
 })
 
 async function writeAll () {
-  const localePath = join(__dirname, '../../../client/src/locale')
+  const localePath = join(root(), 'client', 'src', 'locale')
 
   await writeJSON(join(localePath, 'player.en-US.json'), playerKeys, { spaces: 4 })
   await writeJSON(join(localePath, 'server.en-US.json'), serverKeys, { spaces: 4 })