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

146 lines
5.2 KiB
TypeScript
Raw Normal View History

import { readJsonSync, writeJSON } from 'fs-extra/esm'
2018-06-06 14:23:40 +02:00
import { join } from 'path'
import { I18N_LOCALES, USER_ROLE_LABELS } from '@peertube/peertube-core-utils'
import { root } from '@peertube/peertube-node-utils'
2018-08-03 10:26:47 +02:00
import {
2023-04-21 15:04:12 +02:00
ABUSE_STATES,
2018-08-03 10:26:47 +02:00
buildLanguages,
2023-04-21 15:04:12 +02:00
RUNNER_JOB_STATES,
USER_REGISTRATION_STATES,
2018-08-03 10:26:47 +02:00
VIDEO_CATEGORIES,
2023-04-21 15:04:12 +02:00
VIDEO_CHANNEL_SYNC_STATE,
2018-08-03 10:26:47 +02:00
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.js'
2018-06-06 14:23:40 +02:00
const videojs = readJsonSync(join(root(), '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',
'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: ',
2020-11-09 16:29:58 +01:00
'Total uploaded: ': 'Total uploaded: ',
2020-12-04 16:37:21 +01:00
'From servers: ': 'From servers: ',
'From peers: ': 'From peers: ',
2020-11-09 16:29:58 +01:00
'Normal mode': 'Normal mode',
2021-04-27 15:50:29 +02:00
'Stats for nerds': 'Stats for nerds',
'Theater mode': 'Theater mode',
'Video UUID': 'Video UUID',
'Viewport / Frames': 'Viewport / Frames',
'Resolution': 'Resolution',
'Volume': 'Volume',
'Codecs': 'Codecs',
'Color': 'Color',
2022-12-20 16:28:15 +01:00
'Go back to the live': 'Go back to the live',
2021-04-27 15:50:29 +02:00
'Connection Speed': 'Connection Speed',
'Network Activity': 'Network Activity',
'Total Transfered': 'Total Transfered',
'Download Breakdown': 'Download Breakdown',
'Buffer Progress': 'Buffer Progress',
'Buffer State': 'Buffer State',
2021-04-28 09:07:57 +02:00
'Live Latency': 'Live Latency',
'P2P': 'P2P',
2022-01-12 15:07:21 +01:00
'{1} seconds': '{1} seconds',
'enabled': 'enabled',
2022-01-12 15:07:21 +01:00
'Playlist: {1}': 'Playlist: {1}',
'disabled': 'disabled',
2021-10-21 11:01:10 +02:00
' off': ' off',
2022-02-02 11:16:23 +01:00
'Player mode': 'Player mode',
2022-05-04 09:18:39 +02:00
'Play in loop': 'Play in loop',
'This live has not started yet.': 'This live has not started yet.',
'This live has ended.': 'This live has ended.',
2022-09-16 11:10:12 +02:00
'The video failed to play, will try to fast forward.': 'The video failed to play, will try to fast forward.',
'{1} / {2} dropped of {3}': '{1} / {2} dropped of {3}',
' (muted)': ' (muted)',
'{1} from servers · {2} from peers': '{1} from servers · {2} from peers',
'Previous video': 'Previous video',
2023-02-15 10:27:26 +01:00
'Video page (new window)': 'Video page (new window)',
'Next video': 'Next video',
'This video is password protected': 'This video is password protected',
'You need a password to watch this video.': 'You need a password to watch this video.',
2023-06-29 15:55:00 +02:00
'Incorrect password, please enter a correct password': 'Incorrect password, please enter a correct password',
'Cancel': 'Cancel',
'Up Next': 'Up Next',
'Autoplay is suspended': 'Autoplay is suspended'
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 = {}
2022-08-17 15:36:03 +02:00
Object.values(VIDEO_CATEGORIES)
.concat(Object.values(VIDEO_LICENCES))
.concat(Object.values(VIDEO_PRIVACIES))
.concat(Object.values(VIDEO_STATES))
.concat(Object.values(VIDEO_IMPORT_STATES))
.concat(Object.values(VIDEO_PLAYLIST_PRIVACIES))
.concat(Object.values(VIDEO_PLAYLIST_TYPES))
.concat(Object.values(USER_ROLE_LABELS))
2023-04-21 15:04:12 +02:00
.concat(Object.values(VIDEO_CHANNEL_SYNC_STATE))
.concat(Object.values(ABUSE_STATES))
.concat(Object.values(USER_REGISTRATION_STATES))
.concat(Object.values(RUNNER_JOB_STATES))
.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}',
2020-11-09 16:29:58 +01:00
'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
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)
2020-08-14 09:32:20 +02:00
writeAll().catch(err => {
2018-06-06 16:46:42 +02:00
console.error(err)
process.exit(-1)
2019-11-07 09:45:14 +01:00
})
2020-08-14 09:32:20 +02:00
async function writeAll () {
const localePath = join(root(), 'client', 'src', 'locale')
2020-08-14 09:32:20 +02:00
await writeJSON(join(localePath, 'player.en-US.json'), playerKeys, { spaces: 4 })
await writeJSON(join(localePath, 'server.en-US.json'), serverKeys, { spaces: 4 })
for (const key of Object.keys(I18N_LOCALES)) {
const playerJsonPath = join(localePath, `player.${key}.json`)
const translatedPlayer = readJsonSync(playerJsonPath)
2020-08-14 09:32:20 +02:00
const newTranslatedPlayer = Object.assign({}, playerKeys, translatedPlayer)
await writeJSON(playerJsonPath, newTranslatedPlayer, { spaces: 4 })
const serverJsonPath = join(localePath, `server.${key}.json`)
const translatedServer = readJsonSync(serverJsonPath)
2020-08-14 09:32:20 +02:00
const newTranslatedServer = Object.assign({}, serverKeys, translatedServer)
await writeJSON(serverJsonPath, newTranslatedServer, { spaces: 4 })
}
}