mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-24 09:40:28 -06:00
Added "zxx" (no linguistic content) in available video languages (#4631)
* Added "zxx" (no linguistic content) in available video languages Implements https://github.com/Chocobozzz/PeerTube/issues/1489 * FIx lint * Fix lint * Put other languages below instance languages Co-authored-by: Chocobozzz <me@florianbigard.com>
This commit is contained in:
parent
a37e9e74ff
commit
81547acb25
@ -178,9 +178,11 @@ export class VideoEditComponent implements OnInit, OnDestroy {
|
||||
.subscribe(res => {
|
||||
this.videoLanguages = res.languages
|
||||
.map(l => {
|
||||
if (l.id === 'zxx') return { ...l, group: $localize`Other`, groupOrder: 1 }
|
||||
|
||||
return res.about.instance.languages.includes(l.id)
|
||||
? { ...l, group: $localize`Instance languages`, groupOrder: 0 }
|
||||
: { ...l, group: $localize`All languages`, groupOrder: 1 }
|
||||
: { ...l, group: $localize`All languages`, groupOrder: 2 }
|
||||
})
|
||||
.sort((a, b) => a.groupOrder - b.groupOrder)
|
||||
})
|
||||
|
@ -1075,7 +1075,9 @@ function buildLanguages () {
|
||||
epo: true, // Esperanto
|
||||
tlh: true, // Klingon
|
||||
jbo: true, // Lojban
|
||||
avk: true // Kotava
|
||||
avk: true, // Kotava
|
||||
|
||||
zxx: true // No linguistic content (ISO-639-2)
|
||||
}
|
||||
|
||||
// Only add ISO639-1 languages and some sign languages (ISO639-3)
|
||||
|
Loading…
Reference in New Issue
Block a user