]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - scripts/i18n/create-custom-files.ts
Fast forward on HLS decode error
[github/Chocobozzz/PeerTube.git] / scripts / i18n / create-custom-files.ts
1 import { writeJSON } from 'fs-extra'
2 import { values } from 'lodash'
3 import { join } from 'path'
4 import { root } from '@shared/core-utils'
5 import {
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'
15 import { I18N_LOCALES } from '../../shared/core-utils/i18n'
16
17 const videojs = require(join(root(), 'client', 'src', 'locale', 'videojs.en-US.json'))
18 const playerKeys = {
19 'Quality': 'Quality',
20 'Auto': 'Auto',
21 'Speed': 'Speed',
22 'Subtitles/CC': 'Subtitles/CC',
23 'peers': 'peers',
24 'peer': 'peer',
25 'Go to the video page': 'Go to the video page',
26 'Settings': 'Settings',
27 'Watching this video may reveal your IP address to others.': 'Watching this video may reveal your IP address to others.',
28 'Copy the video URL': 'Copy the video URL',
29 'Copy the video URL at the current time': 'Copy the video URL at the current time',
30 'Copy embed code': 'Copy embed code',
31 'Copy magnet URI': 'Copy magnet URI',
32 'Total downloaded: ': 'Total downloaded: ',
33 'Total uploaded: ': 'Total uploaded: ',
34 'From servers: ': 'From servers: ',
35 'From peers: ': 'From peers: ',
36 'Normal mode': 'Normal mode',
37 'Stats for nerds': 'Stats for nerds',
38 'Theater mode': 'Theater mode',
39 'Video UUID': 'Video UUID',
40 'Viewport / Frames': 'Viewport / Frames',
41 'Resolution': 'Resolution',
42 'Volume': 'Volume',
43 'Codecs': 'Codecs',
44 'Color': 'Color',
45 'Connection Speed': 'Connection Speed',
46 'Network Activity': 'Network Activity',
47 'Total Transfered': 'Total Transfered',
48 'Download Breakdown': 'Download Breakdown',
49 'Buffer Progress': 'Buffer Progress',
50 'Buffer State': 'Buffer State',
51 'Live Latency': 'Live Latency',
52 'P2P': 'P2P',
53 '{1} seconds': '{1} seconds',
54 'enabled': 'enabled',
55 'Playlist: {1}': 'Playlist: {1}',
56 'disabled': 'disabled',
57 ' off': ' off',
58 'Player mode': 'Player mode',
59 'The video failed to play, will try to fast forward.': 'The video failed to play, will try to fast forward.'
60 }
61 Object.assign(playerKeys, videojs)
62
63 // Server keys
64 const serverKeys: any = {}
65 values(VIDEO_CATEGORIES)
66 .concat(values(VIDEO_LICENCES))
67 .concat(values(VIDEO_PRIVACIES))
68 .concat(values(VIDEO_STATES))
69 .concat(values(VIDEO_IMPORT_STATES))
70 .concat(values(VIDEO_PLAYLIST_PRIVACIES))
71 .concat(values(VIDEO_PLAYLIST_TYPES))
72 .concat([
73 'This video does not exist.',
74 'We cannot fetch the video. Please try again later.',
75 'Sorry',
76 'This video is not available because the remote instance is not responding.',
77 'This playlist does not exist',
78 'We cannot fetch the playlist. Please try again later.',
79 'Playlist: {1}',
80 'By {1}',
81 'Unavailable video'
82 ])
83 .forEach(v => { serverKeys[v] = v })
84
85 // More keys
86 Object.assign(serverKeys, {
87 Misc: 'Misc',
88 Unknown: 'Unknown'
89 })
90
91 // ISO 639 keys
92 const languageKeys: any = {}
93 const languages = buildLanguages()
94 Object.keys(languages).forEach(k => { languageKeys[languages[k]] = languages[k] })
95
96 Object.assign(serverKeys, languageKeys)
97
98 writeAll().catch(err => {
99 console.error(err)
100 process.exit(-1)
101 })
102
103 async function writeAll () {
104 const localePath = join(root(), 'client', 'src', 'locale')
105
106 await writeJSON(join(localePath, 'player.en-US.json'), playerKeys, { spaces: 4 })
107 await writeJSON(join(localePath, 'server.en-US.json'), serverKeys, { spaces: 4 })
108
109 for (const key of Object.keys(I18N_LOCALES)) {
110 const playerJsonPath = join(localePath, `player.${key}.json`)
111 const translatedPlayer = require(playerJsonPath)
112
113 const newTranslatedPlayer = Object.assign({}, playerKeys, translatedPlayer)
114 await writeJSON(playerJsonPath, newTranslatedPlayer, { spaces: 4 })
115
116 const serverJsonPath = join(localePath, `server.${key}.json`)
117 const translatedServer = require(serverJsonPath)
118
119 const newTranslatedServer = Object.assign({}, serverKeys, translatedServer)
120 await writeJSON(serverJsonPath, newTranslatedServer, { spaces: 4 })
121 }
122 }