Move iso639 strings in its own translation file
[oweals/peertube.git] / scripts / i18n / create-custom-files.ts
1 import * as jsToXliff12 from 'xliff/jsToXliff12'
2 import { writeFile } from 'fs'
3 import { join } from 'path'
4 import { buildLanguages, VIDEO_CATEGORIES, VIDEO_LICENCES, VIDEO_PRIVACIES } from '../../server/initializers/constants'
5 import { values } from 'lodash'
6
7 type TranslationType = {
8   target: string
9   data: { [id: string]: string }
10 }
11
12 const videojs = require(join(__dirname, '../../../client/src/locale/source/videojs_en_US.json'))
13 const playerKeys = {
14   'Quality': 'Quality',
15   'Auto': 'Auto',
16   'Speed': 'Speed',
17   'peers': 'peers',
18   'Go to the video page': 'Go to the video page',
19   'Settings': 'Settings',
20   'Uses P2P, others may know you are watching this video.': 'Uses P2P, others may know you are watching this video.',
21   'Copy the video URL': 'Copy the video URL',
22   'Copy the video URL at the current time': 'Copy the video URL at the current time',
23   'Copy embed code': 'Copy embed code'
24 }
25 const playerTranslations = {
26   target: join(__dirname, '../../../client/src/locale/source/player_en_US.xml'),
27   data: Object.assign({}, videojs, playerKeys)
28 }
29
30 // Server keys
31 const serverKeys: any = {}
32 values(VIDEO_CATEGORIES)
33   .concat(values(VIDEO_LICENCES))
34   .concat(values(VIDEO_PRIVACIES))
35   .forEach(v => serverKeys[v] = v)
36
37 // More keys
38 Object.assign(serverKeys, {
39   'Misc': 'Misc',
40   'Unknown': 'Unknown'
41 })
42
43 const serverTranslations = {
44   target: join(__dirname, '../../../client/src/locale/source/server_en_US.xml'),
45   data: serverKeys
46 }
47
48 // ISO 639 keys
49 const languageKeys: any = {}
50 const languages = buildLanguages()
51 Object.keys(languages).forEach(k => languageKeys[languages[k]] = languages[k])
52
53 const iso639Translations = {
54   target: join(__dirname, '../../../client/src/locale/source/iso639_en_US.xml'),
55   data: languageKeys
56 }
57
58 saveToXliffFile(playerTranslations, err => {
59   if (err) return handleError(err)
60
61   saveToXliffFile(serverTranslations, err => {
62     if (err) return handleError(err)
63
64     saveToXliffFile(iso639Translations, err => {
65       if (err) return handleError(err)
66
67       process.exit(0)
68     })
69   })
70 })
71
72 // Then, the server strings
73
74 function saveToXliffFile (jsonTranslations: TranslationType, cb: Function) {
75   const obj = {
76     resources: {
77       namespace1: {}
78     }
79   }
80   Object.keys(jsonTranslations.data).forEach(k => obj.resources.namespace1[ k ] = { source: jsonTranslations.data[ k ] })
81
82   jsToXliff12(obj, (err, res) => {
83     if (err) return cb(err)
84
85     writeFile(jsonTranslations.target, res, err => {
86       if (err) return cb(err)
87
88       return cb(null)
89     })
90   })
91 }
92
93 function handleError (err: any) {
94   console.error(err)
95   process.exit(-1)
96 }