]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - 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
1import { writeJSON } from 'fs-extra'
2import { values } from 'lodash'
3import { join } from 'path'
4import { registerTSPaths } from '../../server/helpers/register-ts-paths'
5import {
6 buildLanguages,
7 VIDEO_CATEGORIES,
8 VIDEO_IMPORT_STATES,
9 VIDEO_LICENCES,
10 VIDEO_PLAYLIST_PRIVACIES,
11 VIDEO_PLAYLIST_TYPES,
12 VIDEO_PRIVACIES,
13 VIDEO_STATES
14} from '../../server/initializers/constants'
15import { I18N_LOCALES } from '../../shared/core-utils/i18n'
16
17registerTSPaths()
18
19const videojs = require(join(__dirname, '../../../client/src/locale/videojs.en-US.json'))
20const playerKeys = {
21 'Quality': 'Quality',
22 'Auto': 'Auto',
23 'Speed': 'Speed',
24 'Subtitles/CC': 'Subtitles/CC',
25 'peers': 'peers',
26 'peer': 'peer',
27 'Go to the video page': 'Go to the video page',
28 'Settings': 'Settings',
29 'Watching this video may reveal your IP address to others.': 'Watching this video may reveal your IP address to others.',
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',
32 'Copy embed code': 'Copy embed code',
33 'Copy magnet URI': 'Copy magnet URI',
34 'Total downloaded: ': 'Total downloaded: ',
35 'Total uploaded: ': 'Total uploaded: ',
36 'From servers: ': 'From servers: ',
37 'From peers: ': 'From peers: ',
38 'Normal mode': 'Normal mode',
39 'Theater mode': 'Theater mode'
40}
41Object.assign(playerKeys, videojs)
42
43// Server keys
44const serverKeys: any = {}
45values(VIDEO_CATEGORIES)
46 .concat(values(VIDEO_LICENCES))
47 .concat(values(VIDEO_PRIVACIES))
48 .concat(values(VIDEO_STATES))
49 .concat(values(VIDEO_IMPORT_STATES))
50 .concat(values(VIDEO_PLAYLIST_PRIVACIES))
51 .concat(values(VIDEO_PLAYLIST_TYPES))
52 .concat([
53 'This video does not exist.',
54 'We cannot fetch the video. Please try again later.',
55 'Sorry',
56 'This video is not available because the remote instance is not responding.',
57 'This playlist does not exist',
58 'We cannot fetch the playlist. Please try again later.',
59 'Playlist: {1}',
60 'By {1}',
61 'Unavailable video'
62 ])
63 .forEach(v => { serverKeys[v] = v })
64
65// More keys
66Object.assign(serverKeys, {
67 Misc: 'Misc',
68 Unknown: 'Unknown'
69})
70
71// ISO 639 keys
72const languageKeys: any = {}
73const languages = buildLanguages()
74Object.keys(languages).forEach(k => { languageKeys[languages[k]] = languages[k] })
75
76Object.assign(serverKeys, languageKeys)
77
78writeAll().catch(err => {
79 console.error(err)
80 process.exit(-1)
81})
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}