Fix nl_NL locale
This commit is contained in:
parent
9e3e3617dc
commit
dfe4294a72
|
@ -57,6 +57,7 @@ class P2pMediaLoaderPlugin extends Plugin {
|
||||||
initVideoJsContribHlsJsPlayer(player)
|
initVideoJsContribHlsJsPlayer(player)
|
||||||
|
|
||||||
this.startTime = timeToInt(options.startTime)
|
this.startTime = timeToInt(options.startTime)
|
||||||
|
console.log(this.startTime)
|
||||||
|
|
||||||
player.src({
|
player.src({
|
||||||
type: options.type,
|
type: options.type,
|
||||||
|
@ -98,10 +99,25 @@ class P2pMediaLoaderPlugin extends Plugin {
|
||||||
this.runStats()
|
this.runStats()
|
||||||
|
|
||||||
this.hlsjs.on('hlsLevelLoaded', () => {
|
this.hlsjs.on('hlsLevelLoaded', () => {
|
||||||
if (this.startTime) this.player.currentTime(this.startTime)
|
console.log('hello1')
|
||||||
|
if (this.startTime) {
|
||||||
|
this.player.currentTime(this.startTime)
|
||||||
|
}
|
||||||
|
|
||||||
this.hlsjs.off('hlsLevelLoaded', this)
|
this.hlsjs.off('hlsLevelLoaded', this)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
this.hlsjs.on('hlsFragParsed', () => {
|
||||||
|
console.log('hello2')
|
||||||
|
})
|
||||||
|
|
||||||
|
this.hlsjs.on('hlsFragBuffered', () => {
|
||||||
|
console.log('hello 3')
|
||||||
|
})
|
||||||
|
|
||||||
|
this.player.one('loadedmetadata', () => {
|
||||||
|
console.log('hello 4')
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
private runStats () {
|
private runStats () {
|
||||||
|
|
|
@ -2907,7 +2907,7 @@ Het ziet ernaar uit dat je op een server bent zonder HTTPS. Op je webserver moet
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="16e81be2315b29492395d99ba53a83e770430494">
|
<trans-unit id="16e81be2315b29492395d99ba53a83e770430494">
|
||||||
<source>{VAR_PLURAL, plural, =1 {result} other {results} }</source>
|
<source>{VAR_PLURAL, plural, =1 {result} other {results} }</source>
|
||||||
<target>{VAR_PLURAL, plural, =1 {result} anderer {results} }</target>
|
<target>{VAR_PLURAL, plural, =1 {result} other {results} }</target>
|
||||||
<context-group name="null">
|
<context-group name="null">
|
||||||
<context context-type="linenumber">23</context>
|
<context context-type="linenumber">23</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
|
Loading…
Reference in New Issue