aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/initializers/constants.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/initializers/constants.js')
-rw-r--r--server/initializers/constants.js21
1 files changed, 20 insertions, 1 deletions
diff --git a/server/initializers/constants.js b/server/initializers/constants.js
index 6352d7c46..d6da20982 100644
--- a/server/initializers/constants.js
+++ b/server/initializers/constants.js
@@ -5,7 +5,7 @@ const path = require('path')
5 5
6// --------------------------------------------------------------------------- 6// ---------------------------------------------------------------------------
7 7
8const LAST_MIGRATION_VERSION = 45 8const LAST_MIGRATION_VERSION = 50
9 9
10// --------------------------------------------------------------------------- 10// ---------------------------------------------------------------------------
11 11
@@ -135,6 +135,24 @@ const VIDEO_LICENCES = {
135 7: 'Public Domain Dedication' 135 7: 'Public Domain Dedication'
136} 136}
137 137
138// See https://en.wikipedia.org/wiki/List_of_languages_by_number_of_native_speakers#Nationalencyklopedin
139const VIDEO_LANGUAGES = {
140 1: 'English',
141 2: 'Spanish',
142 3: 'Mandarin',
143 4: 'Hindi',
144 5: 'Arabic',
145 6: 'Portuguese',
146 7: 'Bengali',
147 8: 'Russian',
148 9: 'Japanese',
149 10: 'Punjabi',
150 11: 'German',
151 12: 'Korean',
152 13: 'French',
153 14: 'Italien'
154}
155
138// --------------------------------------------------------------------------- 156// ---------------------------------------------------------------------------
139 157
140// Score a pod has when we create it as a friend 158// Score a pod has when we create it as a friend
@@ -291,6 +309,7 @@ module.exports = {
291 THUMBNAILS_SIZE, 309 THUMBNAILS_SIZE,
292 USER_ROLES, 310 USER_ROLES,
293 VIDEO_CATEGORIES, 311 VIDEO_CATEGORIES,
312 VIDEO_LANGUAGES,
294 VIDEO_LICENCES, 313 VIDEO_LICENCES,
295 VIDEO_RATE_TYPES 314 VIDEO_RATE_TYPES
296} 315}