1
0
Fork 0
peertube/scripts/i18n/create-custom-files.ts

79 lines
2.3 KiB
TypeScript
Raw Normal View History

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