]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - scripts/i18n/create-custom-files.ts
Allow to specify transcoding and import jobs concurrency
[github/Chocobozzz/PeerTube.git] / scripts / i18n / create-custom-files.ts
CommitLineData
3aea8eb2 1import { writeJSON } from 'fs-extra'
ef78fdbb 2import { values } from 'lodash'
e945b184 3import { join } from 'path'
ef78fdbb 4import { registerTSPaths } from '../../server/helpers/register-ts-paths'
7e5f9f00
C
5import {
6 buildLanguages,
7 VIDEO_CATEGORIES,
8 VIDEO_IMPORT_STATES,
3aea8eb2
C
9 VIDEO_LICENCES,
10 VIDEO_PLAYLIST_PRIVACIES,
11 VIDEO_PLAYLIST_TYPES,
7e5f9f00
C
12 VIDEO_PRIVACIES,
13 VIDEO_STATES
14} from '../../server/initializers/constants'
ef78fdbb 15import { I18N_LOCALES } from '../../shared/core-utils/i18n'
e945b184 16
3aea8eb2 17registerTSPaths()
e945b184 18
3aea8eb2 19const videojs = require(join(__dirname, '../../../client/src/locale/videojs.en-US.json'))
e945b184
C
20const playerKeys = {
21 'Quality': 'Quality',
22 'Auto': 'Auto',
23 'Speed': 'Speed',
16f7022b 24 'Subtitles/CC': 'Subtitles/CC',
e945b184 25 'peers': 'peers',
09209296 26 'peer': 'peer',
e945b184
C
27 'Go to the video page': 'Go to the video page',
28 'Settings': 'Settings',
d28d1358 29 'Watching this video may reveal your IP address to others.': 'Watching this video may reveal your IP address to others.',
e945b184
C
30 'Copy the video URL': 'Copy the video URL',
31 'Copy the video URL at the current time': 'Copy the video URL at the current time',
09209296 32 'Copy embed code': 'Copy embed code',
37c6bb36 33 'Copy magnet URI': 'Copy magnet URI',
09209296 34 'Total downloaded: ': 'Total downloaded: ',
c1961762 35 'Total uploaded: ': 'Total uploaded: ',
5f8327c5
C
36 'From servers: ': 'From servers: ',
37 'From peers: ': 'From peers: ',
c1961762
C
38 'Normal mode': 'Normal mode',
39 'Theater mode': 'Theater mode'
e945b184 40}
3aea8eb2 41Object.assign(playerKeys, videojs)
e945b184 42
7ce44a74
C
43// Server keys
44const serverKeys: any = {}
45values(VIDEO_CATEGORIES)
46 .concat(values(VIDEO_LICENCES))
47 .concat(values(VIDEO_PRIVACIES))
7e5f9f00
C
48 .concat(values(VIDEO_STATES))
49 .concat(values(VIDEO_IMPORT_STATES))
830b4faf
C
50 .concat(values(VIDEO_PLAYLIST_PRIVACIES))
51 .concat(values(VIDEO_PLAYLIST_TYPES))
ad3fa0c5
C
52 .concat([
53 'This video does not exist.',
54 'We cannot fetch the video. Please try again later.',
55 'Sorry',
5abc96fc
C
56 'This video is not available because the remote instance is not responding.',
57 'This playlist does not exist',
4572c3d0
C
58 'We cannot fetch the playlist. Please try again later.',
59 'Playlist: {1}',
56674bb9 60 'By {1}',
c1961762 61 'Unavailable video'
ad3fa0c5 62 ])
f0af38e6 63 .forEach(v => { serverKeys[v] = v })
7ce44a74 64
7ce44a74
C
65// More keys
66Object.assign(serverKeys, {
f0af38e6
C
67 Misc: 'Misc',
68 Unknown: 'Unknown'
7ce44a74
C
69})
70
850c1bf7
C
71// ISO 639 keys
72const languageKeys: any = {}
73const languages = buildLanguages()
f0af38e6 74Object.keys(languages).forEach(k => { languageKeys[languages[k]] = languages[k] })
850c1bf7 75
3aea8eb2 76Object.assign(serverKeys, languageKeys)
850c1bf7 77
ef78fdbb 78writeAll().catch(err => {
7ce44a74
C
79 console.error(err)
80 process.exit(-1)
3aea8eb2 81})
ef78fdbb
C
82
83async function writeAll () {
84 const localePath = join(__dirname, '../../../client/src/locale')
85
86 await writeJSON(join(localePath, 'player.en-US.json'), playerKeys, { spaces: 4 })
87 await writeJSON(join(localePath, 'server.en-US.json'), serverKeys, { spaces: 4 })
88
89 for (const key of Object.keys(I18N_LOCALES)) {
90 const playerJsonPath = join(localePath, `player.${key}.json`)
91 const translatedPlayer = require(playerJsonPath)
92
93 const newTranslatedPlayer = Object.assign({}, playerKeys, translatedPlayer)
94 await writeJSON(playerJsonPath, newTranslatedPlayer, { spaces: 4 })
95
96 const serverJsonPath = join(localePath, `server.${key}.json`)
97 const translatedServer = require(serverJsonPath)
98
99 const newTranslatedServer = Object.assign({}, serverKeys, translatedServer)
100 await writeJSON(serverJsonPath, newTranslatedServer, { spaces: 4 })
101 }
102}