X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=scripts%2Fi18n%2Fcreate-custom-files.ts;h=bf3dfa1c9913f684ae50e10995510181c0a78dad;hb=c4207f978e23c77f09c4646b940dfd532281300f;hp=78a51d1e657ac17bd4a9e55c2168e7cc97b0d170;hpb=56674bb9f81775ff85115e7daa7d9be0db95c001;p=github%2FChocobozzz%2FPeerTube.git diff --git a/scripts/i18n/create-custom-files.ts b/scripts/i18n/create-custom-files.ts index 78a51d1e6..bf3dfa1c9 100755 --- a/scripts/i18n/create-custom-files.ts +++ b/scripts/i18n/create-custom-files.ts @@ -1,6 +1,7 @@ -import { registerTSPaths } from '../../server/helpers/register-ts-paths' import { writeJSON } from 'fs-extra' +import { values } from 'lodash' import { join } from 'path' +import { root } from '@shared/core-utils' import { buildLanguages, VIDEO_CATEGORIES, @@ -11,11 +12,9 @@ import { VIDEO_PRIVACIES, VIDEO_STATES } from '../../server/initializers/constants' -import { values } from 'lodash' - -registerTSPaths() +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', @@ -31,7 +30,33 @@ const playerKeys = { 'Copy embed code': 'Copy embed code', 'Copy magnet URI': 'Copy magnet URI', 'Total downloaded: ': 'Total downloaded: ', - 'Total uploaded: ': 'Total uploaded: ' + 'Total uploaded: ': 'Total uploaded: ', + 'From servers: ': 'From servers: ', + 'From peers: ': 'From peers: ', + 'Normal mode': 'Normal mode', + 'Stats for nerds': 'Stats for nerds', + 'Theater mode': 'Theater mode', + 'Video UUID': 'Video UUID', + 'Viewport / Frames': 'Viewport / Frames', + 'Resolution': 'Resolution', + 'Volume': 'Volume', + 'Codecs': 'Codecs', + 'Color': 'Color', + 'Connection Speed': 'Connection Speed', + 'Network Activity': 'Network Activity', + 'Total Transfered': 'Total Transfered', + 'Download Breakdown': 'Download Breakdown', + 'Buffer Progress': 'Buffer Progress', + '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', + 'The video failed to play, will try to fast forward.': 'The video failed to play, will try to fast forward.' } Object.assign(playerKeys, videojs) @@ -70,10 +95,28 @@ Object.keys(languages).forEach(k => { languageKeys[languages[k]] = languages[k] Object.assign(serverKeys, languageKeys) -Promise.all([ - writeJSON(join(__dirname, '../../../client/src/locale/player.en-US.json'), playerKeys), - writeJSON(join(__dirname, '../../../client/src/locale/server.en-US.json'), serverKeys) -]).catch(err => { +writeAll().catch(err => { console.error(err) process.exit(-1) }) + +async function writeAll () { + 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 }) + + for (const key of Object.keys(I18N_LOCALES)) { + const playerJsonPath = join(localePath, `player.${key}.json`) + const translatedPlayer = require(playerJsonPath) + + const newTranslatedPlayer = Object.assign({}, playerKeys, translatedPlayer) + await writeJSON(playerJsonPath, newTranslatedPlayer, { spaces: 4 }) + + const serverJsonPath = join(localePath, `server.${key}.json`) + const translatedServer = require(serverJsonPath) + + const newTranslatedServer = Object.assign({}, serverKeys, translatedServer) + await writeJSON(serverJsonPath, newTranslatedServer, { spaces: 4 }) + } +}