X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=scripts%2Fi18n%2Fcreate-custom-files.ts;h=d9328b1257879f1f6159e5db9ca07dc53f04bd5c;hb=b8a4afa4c2ba8ed8ebfc4530f002f0e5037a0cf3;hp=b26e92d93dd9915fb53184e5da811b665759b715;hpb=c7027c06e9a73dad99d3f9bd9937a41a763850ce;p=github%2FChocobozzz%2FPeerTube.git diff --git a/scripts/i18n/create-custom-files.ts b/scripts/i18n/create-custom-files.ts index b26e92d93..d9328b125 100755 --- a/scripts/i18n/create-custom-files.ts +++ b/scripts/i18n/create-custom-files.ts @@ -1,7 +1,9 @@ +import { registerTSPaths } from '../../server/helpers/register-ts-paths' +registerTSPaths() + import { writeJSON } from 'fs-extra' import { values } from 'lodash' import { join } from 'path' -import { registerTSPaths } from '../../server/helpers/register-ts-paths' import { buildLanguages, VIDEO_CATEGORIES, @@ -14,8 +16,6 @@ import { } from '../../server/initializers/constants' import { I18N_LOCALES } from '../../shared/core-utils/i18n' -registerTSPaths() - const videojs = require(join(__dirname, '../../../client/src/locale/videojs.en-US.json')) const playerKeys = { 'Quality': 'Quality', @@ -51,6 +51,10 @@ 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' } Object.assign(playerKeys, videojs)