X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=scripts%2Fi18n%2Fcreate-custom-files.ts;h=e52909c433987dacc2a9189c5d48e71d1b520190;hb=b0185d7351f71bbc5ccbeed5bba86a619a7de70b;hp=81b6e33888f4aa9fb8b85864feccf74a7ad26bd6;hpb=4e11d8f3ca65bb1ffd0f42fa1521eabc5f3d7713;p=github%2FChocobozzz%2FPeerTube.git diff --git a/scripts/i18n/create-custom-files.ts b/scripts/i18n/create-custom-files.ts index 81b6e3388..e52909c43 100755 --- a/scripts/i18n/create-custom-files.ts +++ b/scripts/i18n/create-custom-files.ts @@ -1,7 +1,7 @@ import { writeJSON } from 'fs-extra' import { values } from 'lodash' import { join } from 'path' -import { registerTSPaths } from '../../server/helpers/register-ts-paths' +import { root } from '@shared/core-utils' import { buildLanguages, VIDEO_CATEGORIES, @@ -14,9 +14,7 @@ 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 videojs = require(join(root(), 'client', 'src', 'locale', 'videojs.en-US.json')) const playerKeys = { 'Quality': 'Quality', 'Auto': 'Auto', @@ -50,7 +48,18 @@ const playerKeys = { 'Download Breakdown': 'Download Breakdown', 'Buffer Progress': 'Buffer Progress', 'Buffer State': 'Buffer State', - 'Live Latency': 'Live Latency' + 'Live Latency': 'Live Latency', + 'P2P': 'P2P', + '{1} seconds': '{1} seconds', + 'enabled': 'enabled', + 'Playlist: {1}': 'Playlist: {1}', + 'disabled': 'disabled', + ' off': ' off', + '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) @@ -95,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 })