X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=scripts%2Fi18n%2Fcreate-custom-files.ts;h=7556866e6a5632c3edc7ed8f0af6d3a1d7ee4429;hb=c3edc5b074aa4bb1861ed0a94d3713808e87170f;hp=2a222ebce026a4c4c599bd5f6d334a76a11a82e4;hpb=e2a1ccd1749981875f6fe8eeab85b22cbcfeed5b;p=github%2FChocobozzz%2FPeerTube.git diff --git a/scripts/i18n/create-custom-files.ts b/scripts/i18n/create-custom-files.ts index 2a222ebce..7556866e6 100755 --- a/scripts/i18n/create-custom-files.ts +++ b/scripts/i18n/create-custom-files.ts @@ -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', @@ -51,6 +49,9 @@ const playerKeys = { 'Buffer Progress': 'Buffer Progress', 'Buffer State': 'Buffer State', 'Live Latency': 'Live Latency', + 'P2P': 'P2P', + 'enabled': 'enabled', + 'disabled': 'disabled', ' off': ' off', 'Player mode': 'Player mode' } @@ -97,7 +98,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 })