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

153 lines
5.4 KiB
TypeScript
Raw Normal View History

import { readJsonSync, writeJSON } from 'fs-extra/esm'
2018-06-06 12:23:40 +00: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 08:26:47 +00:00
import {
2023-04-21 13:04:12 +00:00
ABUSE_STATES,
2018-08-03 08:26:47 +00:00
buildLanguages,
2023-04-21 13:04:12 +00:00
RUNNER_JOB_STATES,
2024-02-12 09:47:52 +00:00
USER_EXPORT_STATES,
2023-04-21 13:04:12 +00:00
USER_REGISTRATION_STATES,
2018-08-03 08:26:47 +00:00
VIDEO_CATEGORIES,
2023-04-21 13:04:12 +00:00
VIDEO_CHANNEL_SYNC_STATE,
2018-08-03 08:26:47 +00:00
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,
2024-02-12 09:47:52 +00:00
USER_IMPORT_STATES,
2018-08-03 08:26:47 +00:00
VIDEO_STATES
2023-10-04 13:13:25 +00:00
} from '@peertube/peertube-server/core/initializers/constants.js'
2018-06-06 12:23:40 +00:00
const videojs = readJsonSync(join(root(), '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',
'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: ',
2020-11-09 15:29:58 +00:00
'Total uploaded: ': 'Total uploaded: ',
2020-12-04 15:37:21 +00:00
'From servers: ': 'From servers: ',
'From peers: ': 'From peers: ',
2020-11-09 15:29:58 +00:00
'Normal mode': 'Normal mode',
2021-04-27 13:50:29 +00: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 15:28:15 +00:00
'Go back to the live': 'Go back to the live',
2021-04-27 13:50:29 +00: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 07:07:57 +00:00
'Live Latency': 'Live Latency',
'P2P': 'P2P',
2022-01-12 14:07:21 +00:00
'{1} seconds': '{1} seconds',
'enabled': 'enabled',
2022-01-12 14:07:21 +00:00
'Playlist: {1}': 'Playlist: {1}',
'disabled': 'disabled',
2021-10-21 09:01:10 +00:00
' off': ' off',
2022-02-02 10:16:23 +00:00
'Player mode': 'Player mode',
2022-05-04 07:18:39 +00: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 09:10:12 +00: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 09:27:26 +00: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 13:55:00 +00: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',
'{1} (from edge: {2})': '{1} (from edge: {2})',
'Disable subtitles': 'Disable subtitles',
'Enable {1} subtitle': 'Enable {1} subtitle'
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 = {}
2022-08-17 13:36:03 +00: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 13:04:12 +00: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))
2024-02-12 09:47:52 +00:00
.concat(Object.values(USER_EXPORT_STATES))
.concat(Object.values(USER_IMPORT_STATES))
.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-11-09 15:29:58 +00:00
'Unavailable video'
])
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
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)
2020-08-14 07:32:20 +00:00
writeAll().catch(err => {
2018-06-06 14:46:42 +00:00
console.error(err)
process.exit(-1)
2019-11-07 08:45:14 +00:00
})
2020-08-14 07:32:20 +00:00
async function writeAll () {
const localePath = join(root(), 'client', 'src', 'locale')
2020-08-14 07:32:20 +00: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 07:32:20 +00: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 07:32:20 +00:00
const newTranslatedServer = Object.assign({}, serverKeys, translatedServer)
await writeJSON(serverJsonPath, newTranslatedServer, { spaces: 4 })
}
}