]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - scripts/i18n/create-custom-files.ts
Translated using Weblate (Ukrainian)
[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 'Stats for nerds': 'Stats for nerds',
40 'Theater mode': 'Theater mode',
41 'Video UUID': 'Video UUID',
42 'Viewport / Frames': 'Viewport / Frames',
43 'Resolution': 'Resolution',
44 'Volume': 'Volume',
45 'Codecs': 'Codecs',
46 'Color': 'Color',
47 'Connection Speed': 'Connection Speed',
48 'Network Activity': 'Network Activity',
49 'Total Transfered': 'Total Transfered',
50 'Download Breakdown': 'Download Breakdown',
51 'Buffer Progress': 'Buffer Progress',
52 'Buffer State': 'Buffer State',
53 'Live Latency': 'Live Latency',
54 'Player mode': 'Player mode'
55}
56Object.assign(playerKeys, videojs)
57
58// Server keys
59const serverKeys: any = {}
60values(VIDEO_CATEGORIES)
61 .concat(values(VIDEO_LICENCES))
62 .concat(values(VIDEO_PRIVACIES))
63 .concat(values(VIDEO_STATES))
64 .concat(values(VIDEO_IMPORT_STATES))
65 .concat(values(VIDEO_PLAYLIST_PRIVACIES))
66 .concat(values(VIDEO_PLAYLIST_TYPES))
67 .concat([
68 'This video does not exist.',
69 'We cannot fetch the video. Please try again later.',
70 'Sorry',
71 'This video is not available because the remote instance is not responding.',
72 'This playlist does not exist',
73 'We cannot fetch the playlist. Please try again later.',
74 'Playlist: {1}',
75 'By {1}',
76 'Unavailable video'
77 ])
78 .forEach(v => { serverKeys[v] = v })
79
80// More keys
81Object.assign(serverKeys, {
82 Misc: 'Misc',
83 Unknown: 'Unknown'
84})
85
86// ISO 639 keys
87const languageKeys: any = {}
88const languages = buildLanguages()
89Object.keys(languages).forEach(k => { languageKeys[languages[k]] = languages[k] })
90
91Object.assign(serverKeys, languageKeys)
92
93writeAll().catch(err => {
94 console.error(err)
95 process.exit(-1)
96})
97
98async function writeAll () {
99 const localePath = join(__dirname, '../../../client/src/locale')
100
101 await writeJSON(join(localePath, 'player.en-US.json'), playerKeys, { spaces: 4 })
102 await writeJSON(join(localePath, 'server.en-US.json'), serverKeys, { spaces: 4 })
103
104 for (const key of Object.keys(I18N_LOCALES)) {
105 const playerJsonPath = join(localePath, `player.${key}.json`)
106 const translatedPlayer = require(playerJsonPath)
107
108 const newTranslatedPlayer = Object.assign({}, playerKeys, translatedPlayer)
109 await writeJSON(playerJsonPath, newTranslatedPlayer, { spaces: 4 })
110
111 const serverJsonPath = join(localePath, `server.${key}.json`)
112 const translatedServer = require(serverJsonPath)
113
114 const newTranslatedServer = Object.assign({}, serverKeys, translatedServer)
115 await writeJSON(serverJsonPath, newTranslatedServer, { spaces: 4 })
116 }
117}