PeerTube/scripts/i18n/create-custom-files.ts

80 lines
2.4 KiB
TypeScript
Raw Normal View History

import { registerTSPaths } from '../../server/helpers/register-ts-paths'
2019-11-07 09:45:14 +01:00
import { writeJSON } from 'fs-extra'
2018-06-06 14:23:40 +02:00
import { join } from 'path'
2018-08-03 10:26:47 +02:00
import {
buildLanguages,
VIDEO_CATEGORIES,
VIDEO_IMPORT_STATES,
2019-11-07 09:45:14 +01:00
VIDEO_LICENCES,
VIDEO_PLAYLIST_PRIVACIES,
VIDEO_PLAYLIST_TYPES,
2018-08-03 10:26:47 +02:00
VIDEO_PRIVACIES,
VIDEO_STATES
} from '../../server/initializers/constants'
2018-06-06 16:46:42 +02:00
import { values } from 'lodash'
2018-06-06 14:23:40 +02:00
2019-11-07 09:45:14 +01:00
registerTSPaths()
2018-06-06 14:23:40 +02:00
2019-11-07 09:45:14 +01:00
const videojs = require(join(__dirname, '../../../client/src/locale/videojs.en-US.json'))
2018-06-06 14:23:40 +02:00
const playerKeys = {
'Quality': 'Quality',
'Auto': 'Auto',
'Speed': 'Speed',
2018-07-13 18:21:19 +02:00
'Subtitles/CC': 'Subtitles/CC',
2018-06-06 14:23:40 +02:00
'peers': 'peers',
2019-01-29 08:37:25 +01:00
'peer': 'peer',
2018-06-06 14:23:40 +02:00
'Go to the video page': 'Go to the video page',
'Settings': 'Settings',
2020-07-20 17:05:08 +02:00
'Watching this video may reveal your IP address to others.': 'Watching this video may reveal your IP address to others.',
2018-06-06 14:23:40 +02:00
'Copy the video URL': 'Copy the video URL',
'Copy the video URL at the current time': 'Copy the video URL at the current time',
2019-01-29 08:37:25 +01:00
'Copy embed code': 'Copy embed code',
2019-02-15 10:57:59 +01:00
'Copy magnet URI': 'Copy magnet URI',
2019-01-29 08:37:25 +01:00
'Total downloaded: ': 'Total downloaded: ',
'Total uploaded: ': 'Total uploaded: '
2018-06-06 14:23:40 +02:00
}
2019-11-07 09:45:14 +01:00
Object.assign(playerKeys, videojs)
2018-06-06 14:23:40 +02:00
2018-06-06 16:46:42 +02:00
// Server keys
const serverKeys: any = {}
values(VIDEO_CATEGORIES)
.concat(values(VIDEO_LICENCES))
.concat(values(VIDEO_PRIVACIES))
2018-08-03 10:26:47 +02:00
.concat(values(VIDEO_STATES))
.concat(values(VIDEO_IMPORT_STATES))
2019-03-06 15:36:44 +01:00
.concat(values(VIDEO_PLAYLIST_PRIVACIES))
.concat(values(VIDEO_PLAYLIST_TYPES))
.concat([
'This video does not exist.',
'We cannot fetch the video. Please try again later.',
'Sorry',
2020-08-04 11:42:06 +02:00
'This video is not available because the remote instance is not responding.',
'This playlist does not exist',
2020-08-05 09:44:58 +02:00
'We cannot fetch the playlist. Please try again later.',
'Playlist: {1}',
'By {1}',
'Unavailable video'
])
2020-07-30 14:54:31 +02:00
.forEach(v => { serverKeys[v] = v })
2018-06-06 16:46:42 +02:00
// More keys
Object.assign(serverKeys, {
2020-07-30 14:54:31 +02:00
Misc: 'Misc',
Unknown: 'Unknown'
2018-06-06 16:46:42 +02:00
})
// ISO 639 keys
const languageKeys: any = {}
const languages = buildLanguages()
2020-07-30 14:54:31 +02:00
Object.keys(languages).forEach(k => { languageKeys[languages[k]] = languages[k] })
2019-11-07 09:45:14 +01:00
Object.assign(serverKeys, languageKeys)
2019-11-07 09:45:14 +01:00
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 => {
2018-06-06 16:46:42 +02:00
console.error(err)
process.exit(-1)
2019-11-07 09:45:14 +01:00
})