@srgssr/pillarbox-web 1.14.0 → 1.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/pillarbox-core.cjs.js +3 -2
- package/dist/pillarbox-core.cjs.js.map +1 -0
- package/dist/pillarbox-core.es.js +2 -1
- package/dist/pillarbox-core.es.js.map +1 -0
- package/dist/pillarbox.cjs.js +265 -530
- package/dist/pillarbox.cjs.js.map +1 -0
- package/dist/pillarbox.es.js +264 -529
- package/dist/pillarbox.es.js.map +1 -0
- package/dist/pillarbox.min.css +1 -1
- package/dist/pillarbox.min.css.map +1 -1
- package/dist/pillarbox.umd.js +375 -1213
- package/dist/pillarbox.umd.js.map +1 -0
- package/dist/pillarbox.umd.min.js +13 -13
- package/dist/pillarbox.umd.min.js.map +1 -1
- package/dist/types/src/trackers/PillarboxMonitoring.d.ts.map +1 -1
- package/dist/types/src/trackers/SRGAnalytics.d.ts +6 -0
- package/dist/types/src/trackers/SRGAnalytics.d.ts.map +1 -1
- package/package.json +10 -20
- package/scss/pillarbox.scss +1 -1
- package/dist/pillarbox-core.cjs.min.js +0 -2
- package/dist/pillarbox-core.cjs.min.js.map +0 -1
- package/dist/pillarbox-core.es.min.js +0 -2
- package/dist/pillarbox-core.es.min.js.map +0 -1
- package/dist/pillarbox-core.umd.js +0 -68327
- package/dist/pillarbox-core.umd.min.js +0 -35
- package/dist/pillarbox-core.umd.min.js.map +0 -1
- package/dist/pillarbox.cjs.min.js +0 -2
- package/dist/pillarbox.cjs.min.js.map +0 -1
- package/dist/pillarbox.es.min.js +0 -2
- package/dist/pillarbox.es.min.js.map +0 -1
package/dist/pillarbox.cjs.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
const videojs = require('video.js');
|
|
4
4
|
require('videojs-contrib-eme');
|
|
5
5
|
|
|
6
6
|
function ownKeys(e, r) {
|
|
@@ -85,12 +85,11 @@ function _defineProperty(obj, key, value) {
|
|
|
85
85
|
function _objectWithoutPropertiesLoose(source, excluded) {
|
|
86
86
|
if (source == null) return {};
|
|
87
87
|
var target = {};
|
|
88
|
-
var
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
target[key] = source[key];
|
|
88
|
+
for (var key in source) {
|
|
89
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
90
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
91
|
+
target[key] = source[key];
|
|
92
|
+
}
|
|
94
93
|
}
|
|
95
94
|
return target;
|
|
96
95
|
}
|
|
@@ -110,7 +109,7 @@ function _objectWithoutProperties(source, excluded) {
|
|
|
110
109
|
return target;
|
|
111
110
|
}
|
|
112
111
|
|
|
113
|
-
|
|
112
|
+
const version = "1.14.1";
|
|
114
113
|
|
|
115
114
|
/**
|
|
116
115
|
* @ignore
|
|
@@ -1191,6 +1190,7 @@ class SRGAnalytics {
|
|
|
1191
1190
|
};
|
|
1192
1191
|
if (this.isAudioTrackEnabled()) {
|
|
1193
1192
|
labels.media_audio_track = this.getCurrentAudioTrack();
|
|
1193
|
+
labels.media_audiodescription_on = this.isAudioDescriptionEnabled();
|
|
1194
1194
|
}
|
|
1195
1195
|
if (this.isTextTrackEnabled()) {
|
|
1196
1196
|
labels.media_subtitle_selection = this.getCurrentTextTrack();
|
|
@@ -1331,6 +1331,16 @@ class SRGAnalytics {
|
|
|
1331
1331
|
}
|
|
1332
1332
|
}
|
|
1333
1333
|
|
|
1334
|
+
/**
|
|
1335
|
+
* Check if the audio description track is enabled.
|
|
1336
|
+
*
|
|
1337
|
+
* @returns {Boolean} __true__ if enabled __false__ otherwise.
|
|
1338
|
+
*/
|
|
1339
|
+
isAudioDescriptionEnabled() {
|
|
1340
|
+
const currentTrack = Array.from(this.player.audioTracks()).find(track => track.enabled && track.kind.includes('desc'));
|
|
1341
|
+
return Boolean(currentTrack);
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1334
1344
|
/**
|
|
1335
1345
|
* Check if the audio track is enabled.
|
|
1336
1346
|
*
|
|
@@ -1884,7 +1894,6 @@ class PillarboxMonitoring {
|
|
|
1884
1894
|
message: error.message,
|
|
1885
1895
|
name: error.code
|
|
1886
1896
|
}, playbackPosition), {}, {
|
|
1887
|
-
severity: 'Fatal',
|
|
1888
1897
|
url
|
|
1889
1898
|
}));
|
|
1890
1899
|
this.reset();
|
|
@@ -2771,45 +2780,45 @@ class MediaComposition {
|
|
|
2771
2780
|
* @typedef {import('./typedef').MainResource} MainResource
|
|
2772
2781
|
*/
|
|
2773
2782
|
|
|
2774
|
-
|
|
2775
|
-
|
|
2776
|
-
|
|
2777
|
-
|
|
2778
|
-
|
|
2779
|
-
|
|
2780
|
-
|
|
2781
|
-
|
|
2782
|
-
|
|
2783
|
-
|
|
2784
|
-
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
|
|
2789
|
-
|
|
2790
|
-
|
|
2791
|
-
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
|
|
2795
|
-
|
|
2796
|
-
|
|
2797
|
-
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
|
|
2802
|
-
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
|
|
2812
|
-
|
|
2783
|
+
const Play$4 = "Wiedergabe";
|
|
2784
|
+
const Pause$4 = "Pause";
|
|
2785
|
+
const Replay$4 = "Erneut abspielen";
|
|
2786
|
+
const Duration$4 = "Dauer";
|
|
2787
|
+
const LIVE$4 = "LIVE";
|
|
2788
|
+
const Loaded$4 = "Geladen";
|
|
2789
|
+
const Progress$4 = "Status";
|
|
2790
|
+
const Fullscreen$4 = "Vollbild";
|
|
2791
|
+
const Mute$4 = "Stumm schalten";
|
|
2792
|
+
const Unmute$4 = "Ton einschalten";
|
|
2793
|
+
const Subtitles$4 = "Untertitel";
|
|
2794
|
+
const Captions$4 = "Untertitel";
|
|
2795
|
+
const Chapters$4 = "Kapitel";
|
|
2796
|
+
const Close$4 = "Schließen";
|
|
2797
|
+
const Descriptions$4 = "Beschreibungen";
|
|
2798
|
+
const Text$4 = "Schrift";
|
|
2799
|
+
const White$4 = "Weiß";
|
|
2800
|
+
const Black$4 = "Schwarz";
|
|
2801
|
+
const Red$4 = "Rot";
|
|
2802
|
+
const Green$4 = "Grün";
|
|
2803
|
+
const Blue$4 = "Blau";
|
|
2804
|
+
const Yellow$4 = "Gelb";
|
|
2805
|
+
const Magenta$4 = "Magenta";
|
|
2806
|
+
const Cyan$4 = "Türkis";
|
|
2807
|
+
const Background$4 = "Hintergrund";
|
|
2808
|
+
const Window$4 = "Fenster";
|
|
2809
|
+
const Transparent$4 = "Durchsichtig";
|
|
2810
|
+
const Opaque$4 = "Undurchsichtig";
|
|
2811
|
+
const None$4 = "Kein";
|
|
2812
|
+
const Raised$3 = "Erhoben";
|
|
2813
|
+
const Depressed$3 = "Gedrückt";
|
|
2814
|
+
const Uniform$4 = "Uniform";
|
|
2815
|
+
const Casual$3 = "Zwanglos";
|
|
2816
|
+
const Script$3 = "Schreibschrift";
|
|
2817
|
+
const Reset$4 = "Zurücksetzen";
|
|
2818
|
+
const Done$4 = "Fertig";
|
|
2819
|
+
const Color$3 = "Farbe";
|
|
2820
|
+
const Opacity$3 = "Deckkraft";
|
|
2821
|
+
const vjsLang$3 = {
|
|
2813
2822
|
Play: Play$4,
|
|
2814
2823
|
Pause: Pause$4,
|
|
2815
2824
|
Replay: Replay$4,
|
|
@@ -2907,59 +2916,16 @@ var de$1 = {
|
|
|
2907
2916
|
"Skip backward {1} seconds": "{1} Sekunden zurück"
|
|
2908
2917
|
};
|
|
2909
2918
|
|
|
2910
|
-
|
|
2911
|
-
|
|
2912
|
-
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
|
|
2916
|
-
|
|
2917
|
-
|
|
2918
|
-
|
|
2919
|
-
|
|
2920
|
-
Cyan: Cyan$4,
|
|
2921
|
-
Depressed: Depressed$3,
|
|
2922
|
-
Descriptions: Descriptions$4,
|
|
2923
|
-
Done: Done$4,
|
|
2924
|
-
Duration: Duration$4,
|
|
2925
|
-
Fullscreen: Fullscreen$4,
|
|
2926
|
-
Green: Green$4,
|
|
2927
|
-
LIVE: LIVE$4,
|
|
2928
|
-
Loaded: Loaded$4,
|
|
2929
|
-
Magenta: Magenta$4,
|
|
2930
|
-
Mute: Mute$4,
|
|
2931
|
-
None: None$4,
|
|
2932
|
-
Opacity: Opacity$3,
|
|
2933
|
-
Opaque: Opaque$4,
|
|
2934
|
-
Pause: Pause$4,
|
|
2935
|
-
Play: Play$4,
|
|
2936
|
-
Progress: Progress$4,
|
|
2937
|
-
Raised: Raised$3,
|
|
2938
|
-
Red: Red$4,
|
|
2939
|
-
Replay: Replay$4,
|
|
2940
|
-
Reset: Reset$4,
|
|
2941
|
-
Script: Script$3,
|
|
2942
|
-
Subtitles: Subtitles$4,
|
|
2943
|
-
Text: Text$4,
|
|
2944
|
-
Transparent: Transparent$4,
|
|
2945
|
-
Uniform: Uniform$4,
|
|
2946
|
-
Unmute: Unmute$4,
|
|
2947
|
-
White: White$4,
|
|
2948
|
-
Window: Window$4,
|
|
2949
|
-
Yellow: Yellow$4,
|
|
2950
|
-
default: de$1
|
|
2951
|
-
});
|
|
2952
|
-
|
|
2953
|
-
var AGERATING12$4 = "Aus Gründen des Jugendschutzes steht dieser Inhalt nur zwischen 20:00 und 06:00 Uhr zur Verfügung.";
|
|
2954
|
-
var AGERATING18$4 = "Aus Gründen des Jugendschutzes steht dieser Inhalt nur zwischen 23:00 und 05:00 Uhr zur Verfügung.";
|
|
2955
|
-
var COMMERCIAL$4 = "Die Werbung wurde übersprungen.";
|
|
2956
|
-
var ENDDATE$4 = "Dieser Inhalt ist nicht mehr verfügbar.";
|
|
2957
|
-
var GEOBLOCK$4 = "Dieser Inhalt ist ausserhalb der Schweiz nicht verfügbar.";
|
|
2958
|
-
var JOURNALISTIC$4 = "Dieser Inhalt steht aus publizistischen Gründen vorübergehend nicht zur Verfügung.";
|
|
2959
|
-
var LEGAL$4 = "Dieser Inhalt ist aus rechtlichen Gründen nicht verfügbar.";
|
|
2960
|
-
var STARTDATE$4 = "Dieser Inhalt ist noch nicht verfügbar. Bitte probieren Sie es später noch einmal.";
|
|
2961
|
-
var UNKNOWN$4 = "Dieser Inhalt ist nicht verfügbar.";
|
|
2962
|
-
var de = {
|
|
2919
|
+
const AGERATING12$4 = "Aus Gründen des Jugendschutzes steht dieser Inhalt nur zwischen 20:00 und 06:00 Uhr zur Verfügung.";
|
|
2920
|
+
const AGERATING18$4 = "Aus Gründen des Jugendschutzes steht dieser Inhalt nur zwischen 23:00 und 05:00 Uhr zur Verfügung.";
|
|
2921
|
+
const COMMERCIAL$4 = "Die Werbung wurde übersprungen.";
|
|
2922
|
+
const ENDDATE$4 = "Dieser Inhalt ist nicht mehr verfügbar.";
|
|
2923
|
+
const GEOBLOCK$4 = "Dieser Inhalt ist ausserhalb der Schweiz nicht verfügbar.";
|
|
2924
|
+
const JOURNALISTIC$4 = "Dieser Inhalt steht aus publizistischen Gründen vorübergehend nicht zur Verfügung.";
|
|
2925
|
+
const LEGAL$4 = "Dieser Inhalt ist aus rechtlichen Gründen nicht verfügbar.";
|
|
2926
|
+
const STARTDATE$4 = "Dieser Inhalt ist noch nicht verfügbar. Bitte probieren Sie es später noch einmal.";
|
|
2927
|
+
const UNKNOWN$4 = "Dieser Inhalt ist nicht verfügbar.";
|
|
2928
|
+
const pillarboxLang$4 = {
|
|
2963
2929
|
AGERATING12: AGERATING12$4,
|
|
2964
2930
|
AGERATING18: AGERATING18$4,
|
|
2965
2931
|
COMMERCIAL: COMMERCIAL$4,
|
|
@@ -2971,61 +2937,47 @@ var de = {
|
|
|
2971
2937
|
UNKNOWN: UNKNOWN$4
|
|
2972
2938
|
};
|
|
2973
2939
|
|
|
2974
|
-
var pillarboxLang$4 = /*#__PURE__*/Object.freeze({
|
|
2975
|
-
__proto__: null,
|
|
2976
|
-
AGERATING12: AGERATING12$4,
|
|
2977
|
-
AGERATING18: AGERATING18$4,
|
|
2978
|
-
COMMERCIAL: COMMERCIAL$4,
|
|
2979
|
-
ENDDATE: ENDDATE$4,
|
|
2980
|
-
GEOBLOCK: GEOBLOCK$4,
|
|
2981
|
-
JOURNALISTIC: JOURNALISTIC$4,
|
|
2982
|
-
LEGAL: LEGAL$4,
|
|
2983
|
-
STARTDATE: STARTDATE$4,
|
|
2984
|
-
UNKNOWN: UNKNOWN$4,
|
|
2985
|
-
default: de
|
|
2986
|
-
});
|
|
2987
|
-
|
|
2988
2940
|
pillarbox.addLanguage('de', _objectSpread2(_objectSpread2({}, vjsLang$3), pillarboxLang$4));
|
|
2989
2941
|
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
2993
|
-
|
|
2994
|
-
|
|
2995
|
-
|
|
2996
|
-
|
|
2997
|
-
|
|
2998
|
-
|
|
2999
|
-
|
|
3000
|
-
|
|
3001
|
-
|
|
3002
|
-
|
|
3003
|
-
|
|
3004
|
-
|
|
3005
|
-
|
|
3006
|
-
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
|
|
3015
|
-
|
|
3016
|
-
|
|
3017
|
-
|
|
3018
|
-
|
|
3019
|
-
|
|
3020
|
-
|
|
3021
|
-
|
|
3022
|
-
|
|
3023
|
-
|
|
3024
|
-
|
|
3025
|
-
|
|
3026
|
-
|
|
3027
|
-
|
|
3028
|
-
|
|
2942
|
+
const Play$3 = "Play";
|
|
2943
|
+
const Pause$3 = "Pause";
|
|
2944
|
+
const Replay$3 = "Replay";
|
|
2945
|
+
const Duration$3 = "Duration";
|
|
2946
|
+
const LIVE$3 = "LIVE";
|
|
2947
|
+
const Loaded$3 = "Loaded";
|
|
2948
|
+
const Progress$3 = "Progress";
|
|
2949
|
+
const Fullscreen$3 = "Fullscreen";
|
|
2950
|
+
const Mute$3 = "Mute";
|
|
2951
|
+
const Unmute$3 = "Unmute";
|
|
2952
|
+
const Subtitles$3 = "Subtitles";
|
|
2953
|
+
const Captions$3 = "Captions";
|
|
2954
|
+
const Chapters$3 = "Chapters";
|
|
2955
|
+
const Descriptions$3 = "Descriptions";
|
|
2956
|
+
const Close$3 = "Close";
|
|
2957
|
+
const Text$3 = "Text";
|
|
2958
|
+
const White$3 = "White";
|
|
2959
|
+
const Black$3 = "Black";
|
|
2960
|
+
const Red$3 = "Red";
|
|
2961
|
+
const Green$3 = "Green";
|
|
2962
|
+
const Blue$3 = "Blue";
|
|
2963
|
+
const Yellow$3 = "Yellow";
|
|
2964
|
+
const Magenta$3 = "Magenta";
|
|
2965
|
+
const Cyan$3 = "Cyan";
|
|
2966
|
+
const Background$3 = "Background";
|
|
2967
|
+
const Window$3 = "Window";
|
|
2968
|
+
const Transparent$3 = "Transparent";
|
|
2969
|
+
const Opaque$3 = "Opaque";
|
|
2970
|
+
const None$3 = "None";
|
|
2971
|
+
const Raised$2 = "Raised";
|
|
2972
|
+
const Depressed$2 = "Depressed";
|
|
2973
|
+
const Uniform$3 = "Uniform";
|
|
2974
|
+
const Casual$2 = "Casual";
|
|
2975
|
+
const Script$2 = "Script";
|
|
2976
|
+
const Reset$3 = "Reset";
|
|
2977
|
+
const Done$3 = "Done";
|
|
2978
|
+
const Color$2 = "Color";
|
|
2979
|
+
const Opacity$2 = "Opacity";
|
|
2980
|
+
const vjsLang$2 = {
|
|
3029
2981
|
"Audio Player": "Audio Player",
|
|
3030
2982
|
"Video Player": "Video Player",
|
|
3031
2983
|
Play: Play$3,
|
|
@@ -3123,59 +3075,16 @@ var en$1 = {
|
|
|
3123
3075
|
"Skip forward {1} seconds": "Skip forward {1} seconds"
|
|
3124
3076
|
};
|
|
3125
3077
|
|
|
3126
|
-
|
|
3127
|
-
|
|
3128
|
-
|
|
3129
|
-
|
|
3130
|
-
|
|
3131
|
-
|
|
3132
|
-
|
|
3133
|
-
|
|
3134
|
-
|
|
3135
|
-
|
|
3136
|
-
Cyan: Cyan$3,
|
|
3137
|
-
Depressed: Depressed$2,
|
|
3138
|
-
Descriptions: Descriptions$3,
|
|
3139
|
-
Done: Done$3,
|
|
3140
|
-
Duration: Duration$3,
|
|
3141
|
-
Fullscreen: Fullscreen$3,
|
|
3142
|
-
Green: Green$3,
|
|
3143
|
-
LIVE: LIVE$3,
|
|
3144
|
-
Loaded: Loaded$3,
|
|
3145
|
-
Magenta: Magenta$3,
|
|
3146
|
-
Mute: Mute$3,
|
|
3147
|
-
None: None$3,
|
|
3148
|
-
Opacity: Opacity$2,
|
|
3149
|
-
Opaque: Opaque$3,
|
|
3150
|
-
Pause: Pause$3,
|
|
3151
|
-
Play: Play$3,
|
|
3152
|
-
Progress: Progress$3,
|
|
3153
|
-
Raised: Raised$2,
|
|
3154
|
-
Red: Red$3,
|
|
3155
|
-
Replay: Replay$3,
|
|
3156
|
-
Reset: Reset$3,
|
|
3157
|
-
Script: Script$2,
|
|
3158
|
-
Subtitles: Subtitles$3,
|
|
3159
|
-
Text: Text$3,
|
|
3160
|
-
Transparent: Transparent$3,
|
|
3161
|
-
Uniform: Uniform$3,
|
|
3162
|
-
Unmute: Unmute$3,
|
|
3163
|
-
White: White$3,
|
|
3164
|
-
Window: Window$3,
|
|
3165
|
-
Yellow: Yellow$3,
|
|
3166
|
-
default: en$1
|
|
3167
|
-
});
|
|
3168
|
-
|
|
3169
|
-
var AGERATING12$3 = "To protect children this content is only available between 8PM and 6AM.";
|
|
3170
|
-
var AGERATING18$3 = "To protect children this content is only available between 10PM and 5AM.";
|
|
3171
|
-
var COMMERCIAL$3 = "This commercial content is not available.";
|
|
3172
|
-
var ENDDATE$3 = "This content is not available anymore.";
|
|
3173
|
-
var GEOBLOCK$3 = "This content is not available outside Switzerland.";
|
|
3174
|
-
var JOURNALISTIC$3 = "This content is temporarily unavailable for journalistic reasons.";
|
|
3175
|
-
var LEGAL$3 = "This content is not available due to legal restrictions.";
|
|
3176
|
-
var STARTDATE$3 = "This content is not available yet.";
|
|
3177
|
-
var UNKNOWN$3 = "This content is not available.";
|
|
3178
|
-
var en = {
|
|
3078
|
+
const AGERATING12$3 = "To protect children this content is only available between 8PM and 6AM.";
|
|
3079
|
+
const AGERATING18$3 = "To protect children this content is only available between 10PM and 5AM.";
|
|
3080
|
+
const COMMERCIAL$3 = "This commercial content is not available.";
|
|
3081
|
+
const ENDDATE$3 = "This content is not available anymore.";
|
|
3082
|
+
const GEOBLOCK$3 = "This content is not available outside Switzerland.";
|
|
3083
|
+
const JOURNALISTIC$3 = "This content is temporarily unavailable for journalistic reasons.";
|
|
3084
|
+
const LEGAL$3 = "This content is not available due to legal restrictions.";
|
|
3085
|
+
const STARTDATE$3 = "This content is not available yet.";
|
|
3086
|
+
const UNKNOWN$3 = "This content is not available.";
|
|
3087
|
+
const pillarboxLang$3 = {
|
|
3179
3088
|
AGERATING12: AGERATING12$3,
|
|
3180
3089
|
AGERATING18: AGERATING18$3,
|
|
3181
3090
|
COMMERCIAL: COMMERCIAL$3,
|
|
@@ -3187,61 +3096,47 @@ var en = {
|
|
|
3187
3096
|
UNKNOWN: UNKNOWN$3
|
|
3188
3097
|
};
|
|
3189
3098
|
|
|
3190
|
-
var pillarboxLang$3 = /*#__PURE__*/Object.freeze({
|
|
3191
|
-
__proto__: null,
|
|
3192
|
-
AGERATING12: AGERATING12$3,
|
|
3193
|
-
AGERATING18: AGERATING18$3,
|
|
3194
|
-
COMMERCIAL: COMMERCIAL$3,
|
|
3195
|
-
ENDDATE: ENDDATE$3,
|
|
3196
|
-
GEOBLOCK: GEOBLOCK$3,
|
|
3197
|
-
JOURNALISTIC: JOURNALISTIC$3,
|
|
3198
|
-
LEGAL: LEGAL$3,
|
|
3199
|
-
STARTDATE: STARTDATE$3,
|
|
3200
|
-
UNKNOWN: UNKNOWN$3,
|
|
3201
|
-
default: en
|
|
3202
|
-
});
|
|
3203
|
-
|
|
3204
3099
|
pillarbox.addLanguage('en', _objectSpread2(_objectSpread2({}, vjsLang$2), pillarboxLang$3));
|
|
3205
3100
|
|
|
3206
|
-
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
|
-
|
|
3210
|
-
|
|
3211
|
-
|
|
3212
|
-
|
|
3213
|
-
|
|
3214
|
-
|
|
3215
|
-
|
|
3216
|
-
|
|
3217
|
-
|
|
3218
|
-
|
|
3219
|
-
|
|
3220
|
-
|
|
3221
|
-
|
|
3222
|
-
|
|
3223
|
-
|
|
3224
|
-
|
|
3225
|
-
|
|
3226
|
-
|
|
3227
|
-
|
|
3228
|
-
|
|
3229
|
-
|
|
3230
|
-
|
|
3231
|
-
|
|
3232
|
-
|
|
3233
|
-
|
|
3234
|
-
|
|
3235
|
-
|
|
3236
|
-
|
|
3237
|
-
|
|
3238
|
-
|
|
3239
|
-
|
|
3240
|
-
|
|
3241
|
-
|
|
3242
|
-
|
|
3243
|
-
|
|
3244
|
-
|
|
3101
|
+
const Play$2 = "Lecture";
|
|
3102
|
+
const Pause$2 = "Pause";
|
|
3103
|
+
const Replay$2 = "Revoir";
|
|
3104
|
+
const Duration$2 = "Durée";
|
|
3105
|
+
const LIVE$2 = "EN DIRECT";
|
|
3106
|
+
const Loaded$2 = "Chargé";
|
|
3107
|
+
const Progress$2 = "Progression";
|
|
3108
|
+
const Fullscreen$2 = "Plein écran";
|
|
3109
|
+
const Mute$2 = "Mettre en sourdine";
|
|
3110
|
+
const Unmute$2 = "Activer le son";
|
|
3111
|
+
const Subtitles$2 = "Sous-titres";
|
|
3112
|
+
const Captions$2 = "Sous-titres transcrits";
|
|
3113
|
+
const Chapters$2 = "Chapitres";
|
|
3114
|
+
const Descriptions$2 = "Descriptions";
|
|
3115
|
+
const Close$2 = "Fermer";
|
|
3116
|
+
const Text$2 = "Texte";
|
|
3117
|
+
const White$2 = "Blanc";
|
|
3118
|
+
const Black$2 = "Noir";
|
|
3119
|
+
const Red$2 = "Rouge";
|
|
3120
|
+
const Green$2 = "Vert";
|
|
3121
|
+
const Blue$2 = "Bleu";
|
|
3122
|
+
const Yellow$2 = "Jaune";
|
|
3123
|
+
const Magenta$2 = "Magenta";
|
|
3124
|
+
const Cyan$2 = "Cyan";
|
|
3125
|
+
const Background$2 = "Arrière-plan";
|
|
3126
|
+
const Window$2 = "Fenêtre";
|
|
3127
|
+
const Transparent$2 = "Transparent";
|
|
3128
|
+
const Opaque$2 = "Opaque";
|
|
3129
|
+
const None$2 = "Aucun";
|
|
3130
|
+
const Raised$1 = "Élevé";
|
|
3131
|
+
const Depressed$1 = "Enfoncé";
|
|
3132
|
+
const Uniform$2 = "Uniforme";
|
|
3133
|
+
const Casual$1 = "Manuscrite";
|
|
3134
|
+
const Script$1 = "Scripte";
|
|
3135
|
+
const Reset$2 = "Réinitialiser";
|
|
3136
|
+
const Done$2 = "Terminé";
|
|
3137
|
+
const Color$1 = "Couleur";
|
|
3138
|
+
const Opacity$1 = "Opacité";
|
|
3139
|
+
const vjsLang$1 = {
|
|
3245
3140
|
"Audio Player": "Lecteur audio",
|
|
3246
3141
|
"Video Player": "Lecteur vidéo",
|
|
3247
3142
|
Play: Play$2,
|
|
@@ -3338,59 +3233,16 @@ var fr$1 = {
|
|
|
3338
3233
|
"Skip forward {1} seconds": "Avancer de {1} secondes"
|
|
3339
3234
|
};
|
|
3340
3235
|
|
|
3341
|
-
|
|
3342
|
-
|
|
3343
|
-
|
|
3344
|
-
|
|
3345
|
-
|
|
3346
|
-
|
|
3347
|
-
|
|
3348
|
-
|
|
3349
|
-
|
|
3350
|
-
|
|
3351
|
-
Cyan: Cyan$2,
|
|
3352
|
-
Depressed: Depressed$1,
|
|
3353
|
-
Descriptions: Descriptions$2,
|
|
3354
|
-
Done: Done$2,
|
|
3355
|
-
Duration: Duration$2,
|
|
3356
|
-
Fullscreen: Fullscreen$2,
|
|
3357
|
-
Green: Green$2,
|
|
3358
|
-
LIVE: LIVE$2,
|
|
3359
|
-
Loaded: Loaded$2,
|
|
3360
|
-
Magenta: Magenta$2,
|
|
3361
|
-
Mute: Mute$2,
|
|
3362
|
-
None: None$2,
|
|
3363
|
-
Opacity: Opacity$1,
|
|
3364
|
-
Opaque: Opaque$2,
|
|
3365
|
-
Pause: Pause$2,
|
|
3366
|
-
Play: Play$2,
|
|
3367
|
-
Progress: Progress$2,
|
|
3368
|
-
Raised: Raised$1,
|
|
3369
|
-
Red: Red$2,
|
|
3370
|
-
Replay: Replay$2,
|
|
3371
|
-
Reset: Reset$2,
|
|
3372
|
-
Script: Script$1,
|
|
3373
|
-
Subtitles: Subtitles$2,
|
|
3374
|
-
Text: Text$2,
|
|
3375
|
-
Transparent: Transparent$2,
|
|
3376
|
-
Uniform: Uniform$2,
|
|
3377
|
-
Unmute: Unmute$2,
|
|
3378
|
-
White: White$2,
|
|
3379
|
-
Window: Window$2,
|
|
3380
|
-
Yellow: Yellow$2,
|
|
3381
|
-
default: fr$1
|
|
3382
|
-
});
|
|
3383
|
-
|
|
3384
|
-
var AGERATING12$2 = "Pour protéger les enfants, ce contenu est accessible entre 20h et 6h.";
|
|
3385
|
-
var AGERATING18$2 = "Pour protéger les enfants, ce contenu est accessible entre 23h et 5h.";
|
|
3386
|
-
var COMMERCIAL$2 = "Ce contenu n'est actuellement pas disponible.";
|
|
3387
|
-
var ENDDATE$2 = "Ce contenu n'est plus disponible.";
|
|
3388
|
-
var GEOBLOCK$2 = "La RTS ne dispose pas des droits de diffusion en dehors de la Suisse.";
|
|
3389
|
-
var JOURNALISTIC$2 = "Ce contenu est temporairement indisponible pour des raisons éditoriales.";
|
|
3390
|
-
var LEGAL$2 = "Pour des raisons juridiques, ce contenu n'est pas disponible.";
|
|
3391
|
-
var STARTDATE$2 = "Ce contenu n'est pas encore disponible. Veuillez réessayer plus tard.";
|
|
3392
|
-
var UNKNOWN$2 = "Ce contenu n'est actuellement pas disponible.";
|
|
3393
|
-
var fr = {
|
|
3236
|
+
const AGERATING12$2 = "Pour protéger les enfants, ce contenu est accessible entre 20h et 6h.";
|
|
3237
|
+
const AGERATING18$2 = "Pour protéger les enfants, ce contenu est accessible entre 23h et 5h.";
|
|
3238
|
+
const COMMERCIAL$2 = "Ce contenu n'est actuellement pas disponible.";
|
|
3239
|
+
const ENDDATE$2 = "Ce contenu n'est plus disponible.";
|
|
3240
|
+
const GEOBLOCK$2 = "La RTS ne dispose pas des droits de diffusion en dehors de la Suisse.";
|
|
3241
|
+
const JOURNALISTIC$2 = "Ce contenu est temporairement indisponible pour des raisons éditoriales.";
|
|
3242
|
+
const LEGAL$2 = "Pour des raisons juridiques, ce contenu n'est pas disponible.";
|
|
3243
|
+
const STARTDATE$2 = "Ce contenu n'est pas encore disponible. Veuillez réessayer plus tard.";
|
|
3244
|
+
const UNKNOWN$2 = "Ce contenu n'est actuellement pas disponible.";
|
|
3245
|
+
const pillarboxLang$2 = {
|
|
3394
3246
|
AGERATING12: AGERATING12$2,
|
|
3395
3247
|
AGERATING18: AGERATING18$2,
|
|
3396
3248
|
COMMERCIAL: COMMERCIAL$2,
|
|
@@ -3402,57 +3254,43 @@ var fr = {
|
|
|
3402
3254
|
UNKNOWN: UNKNOWN$2
|
|
3403
3255
|
};
|
|
3404
3256
|
|
|
3405
|
-
var pillarboxLang$2 = /*#__PURE__*/Object.freeze({
|
|
3406
|
-
__proto__: null,
|
|
3407
|
-
AGERATING12: AGERATING12$2,
|
|
3408
|
-
AGERATING18: AGERATING18$2,
|
|
3409
|
-
COMMERCIAL: COMMERCIAL$2,
|
|
3410
|
-
ENDDATE: ENDDATE$2,
|
|
3411
|
-
GEOBLOCK: GEOBLOCK$2,
|
|
3412
|
-
JOURNALISTIC: JOURNALISTIC$2,
|
|
3413
|
-
LEGAL: LEGAL$2,
|
|
3414
|
-
STARTDATE: STARTDATE$2,
|
|
3415
|
-
UNKNOWN: UNKNOWN$2,
|
|
3416
|
-
default: fr
|
|
3417
|
-
});
|
|
3418
|
-
|
|
3419
3257
|
pillarbox.addLanguage('fr', _objectSpread2(_objectSpread2({}, vjsLang$1), pillarboxLang$2));
|
|
3420
3258
|
|
|
3421
|
-
|
|
3422
|
-
|
|
3423
|
-
|
|
3424
|
-
|
|
3425
|
-
|
|
3426
|
-
|
|
3427
|
-
|
|
3428
|
-
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
|
|
3432
|
-
|
|
3433
|
-
|
|
3434
|
-
|
|
3435
|
-
|
|
3436
|
-
|
|
3437
|
-
|
|
3438
|
-
|
|
3439
|
-
|
|
3440
|
-
|
|
3441
|
-
|
|
3442
|
-
|
|
3443
|
-
|
|
3444
|
-
|
|
3445
|
-
|
|
3446
|
-
|
|
3447
|
-
|
|
3448
|
-
|
|
3449
|
-
|
|
3450
|
-
|
|
3451
|
-
|
|
3452
|
-
|
|
3453
|
-
|
|
3454
|
-
|
|
3455
|
-
|
|
3259
|
+
const Play$1 = "Play";
|
|
3260
|
+
const Pause$1 = "Pausa";
|
|
3261
|
+
const Replay$1 = "Replay";
|
|
3262
|
+
const Duration$1 = "Durata";
|
|
3263
|
+
const LIVE$1 = "LIVE";
|
|
3264
|
+
const Loaded$1 = "Caricato";
|
|
3265
|
+
const Progress$1 = "Stato";
|
|
3266
|
+
const Fullscreen$1 = "Schermo intero";
|
|
3267
|
+
const Mute$1 = "Disattiva l’audio";
|
|
3268
|
+
const Unmute$1 = "Attiva l’audio";
|
|
3269
|
+
const Subtitles$1 = "Sottotitoli";
|
|
3270
|
+
const Captions$1 = "Didascalie";
|
|
3271
|
+
const Chapters$1 = "Capitolo";
|
|
3272
|
+
const Descriptions$1 = "Descrizioni";
|
|
3273
|
+
const Close$1 = "Chiudi";
|
|
3274
|
+
const Text$1 = "Testo";
|
|
3275
|
+
const White$1 = "Bianco";
|
|
3276
|
+
const Black$1 = "Nero";
|
|
3277
|
+
const Red$1 = "Rosso";
|
|
3278
|
+
const Green$1 = "Verde";
|
|
3279
|
+
const Blue$1 = "Blu";
|
|
3280
|
+
const Yellow$1 = "Giallo";
|
|
3281
|
+
const Magenta$1 = "Magenta";
|
|
3282
|
+
const Cyan$1 = "Ciano";
|
|
3283
|
+
const Background$1 = "Sfondo";
|
|
3284
|
+
const Window$1 = "Finestra";
|
|
3285
|
+
const Transparent$1 = "Trasparente";
|
|
3286
|
+
const Opaque$1 = "Opaco";
|
|
3287
|
+
const None$1 = "Nessuno";
|
|
3288
|
+
const Uniform$1 = "Uniforme";
|
|
3289
|
+
const Reset$1 = "Reinizializza";
|
|
3290
|
+
const Done$1 = "Fatto";
|
|
3291
|
+
const Color = "Colore";
|
|
3292
|
+
const Opacity = "Opacità";
|
|
3293
|
+
const vjsLang = {
|
|
3456
3294
|
"Audio Player": "Lettore audio",
|
|
3457
3295
|
"Video Player": "Lettore video",
|
|
3458
3296
|
Play: Play$1,
|
|
@@ -3475,7 +3313,7 @@ var it$1 = {
|
|
|
3475
3313
|
Subtitles: Subtitles$1,
|
|
3476
3314
|
"subtitles off": "Senza sottotitoli",
|
|
3477
3315
|
Captions: Captions$1,
|
|
3478
|
-
"captions off": "Senza
|
|
3316
|
+
"captions off": "Senza didascalie",
|
|
3479
3317
|
Chapters: Chapters$1,
|
|
3480
3318
|
Descriptions: Descriptions$1,
|
|
3481
3319
|
"descriptions off": "Descrizioni disattivate",
|
|
@@ -3493,13 +3331,13 @@ var it$1 = {
|
|
|
3493
3331
|
"Modal Window": "Finestra di dialogo",
|
|
3494
3332
|
"This is a modal window": "Questa è una finestra di dialogo",
|
|
3495
3333
|
"This modal can be closed by pressing the Escape key or activating the close button.": "Questa finestra di dialogo può essere chiusa premendo sul tasto Esc o attivando il pulsante di chiusura.",
|
|
3496
|
-
", opens captions settings dialog": ", aprire
|
|
3497
|
-
", opens subtitles settings dialog": ", aprire
|
|
3498
|
-
", opens descriptions settings dialog": ", aprire
|
|
3334
|
+
", opens captions settings dialog": ", aprire le impostazioni delle didascalie",
|
|
3335
|
+
", opens subtitles settings dialog": ", aprire le impostazioni dei sottotitoli",
|
|
3336
|
+
", opens descriptions settings dialog": ", aprire le impostazioni delle descrizioni",
|
|
3499
3337
|
", selected": ", selezionato",
|
|
3500
|
-
"captions settings": "
|
|
3501
|
-
"subtitles settings": "
|
|
3502
|
-
"descriptions settings": "
|
|
3338
|
+
"captions settings": "Impostazioni didascalie",
|
|
3339
|
+
"subtitles settings": "Impostazioni sottotitoli",
|
|
3340
|
+
"descriptions settings": "Impostazioni descrizioni",
|
|
3503
3341
|
Text: Text$1,
|
|
3504
3342
|
White: White$1,
|
|
3505
3343
|
Black: Black$1,
|
|
@@ -3542,55 +3380,16 @@ var it$1 = {
|
|
|
3542
3380
|
"Skip backward {1} seconds": "Indietro {1} secondi"
|
|
3543
3381
|
};
|
|
3544
3382
|
|
|
3545
|
-
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
Descriptions: Descriptions$1,
|
|
3556
|
-
Done: Done$1,
|
|
3557
|
-
Duration: Duration$1,
|
|
3558
|
-
Fullscreen: Fullscreen$1,
|
|
3559
|
-
Green: Green$1,
|
|
3560
|
-
LIVE: LIVE$1,
|
|
3561
|
-
Loaded: Loaded$1,
|
|
3562
|
-
Magenta: Magenta$1,
|
|
3563
|
-
Mute: Mute$1,
|
|
3564
|
-
None: None$1,
|
|
3565
|
-
Opacity: Opacity,
|
|
3566
|
-
Opaque: Opaque$1,
|
|
3567
|
-
Pause: Pause$1,
|
|
3568
|
-
Play: Play$1,
|
|
3569
|
-
Progress: Progress$1,
|
|
3570
|
-
Red: Red$1,
|
|
3571
|
-
Replay: Replay$1,
|
|
3572
|
-
Reset: Reset$1,
|
|
3573
|
-
Subtitles: Subtitles$1,
|
|
3574
|
-
Text: Text$1,
|
|
3575
|
-
Transparent: Transparent$1,
|
|
3576
|
-
Uniform: Uniform$1,
|
|
3577
|
-
Unmute: Unmute$1,
|
|
3578
|
-
White: White$1,
|
|
3579
|
-
Window: Window$1,
|
|
3580
|
-
Yellow: Yellow$1,
|
|
3581
|
-
default: it$1
|
|
3582
|
-
});
|
|
3583
|
-
|
|
3584
|
-
var AGERATING12$1 = "Per proteggere i bambini, questo media è disponibile solo fra le 20 e le 6.";
|
|
3585
|
-
var AGERATING18$1 = "Per proteggere i bambini, questo media è disponibile solo fra le 23 le 5.";
|
|
3586
|
-
var COMMERCIAL$1 = "Questo contenuto commerciale non è disponibile.";
|
|
3587
|
-
var ENDDATE$1 = "Questo media non è più disponibile.";
|
|
3588
|
-
var GEOBLOCK$1 = "Questo media non è disponibile fuori dalla Svizzera.";
|
|
3589
|
-
var JOURNALISTIC$1 = "Questo contenuto è temporaneamente non disponibile per motivi editoriali.";
|
|
3590
|
-
var LEGAL$1 = "Il contenuto non è fruibile a causa di restrizioni legali.";
|
|
3591
|
-
var STARTDATE$1 = "Il contenuto non è ancora disponibile. Per cortesia prova più tardi.";
|
|
3592
|
-
var UNKNOWN$1 = "Questo media non è disponibile.";
|
|
3593
|
-
var it = {
|
|
3383
|
+
const AGERATING12$1 = "Per proteggere i bambini, questo media è disponibile solo fra le 20 e le 6.";
|
|
3384
|
+
const AGERATING18$1 = "Per proteggere i bambini, questo media è disponibile solo fra le 23 le 5.";
|
|
3385
|
+
const COMMERCIAL$1 = "Questo contenuto commerciale non è disponibile.";
|
|
3386
|
+
const ENDDATE$1 = "Questo media non è più disponibile.";
|
|
3387
|
+
const GEOBLOCK$1 = "Questo media non è disponibile fuori dalla Svizzera.";
|
|
3388
|
+
const JOURNALISTIC$1 = "Questo contenuto è temporaneamente non disponibile per motivi editoriali.";
|
|
3389
|
+
const LEGAL$1 = "Il contenuto non è fruibile a causa di restrizioni legali.";
|
|
3390
|
+
const STARTDATE$1 = "Il contenuto non è ancora disponibile. Per cortesia prova più tardi.";
|
|
3391
|
+
const UNKNOWN$1 = "Questo media non è disponibile.";
|
|
3392
|
+
const pillarboxLang$1 = {
|
|
3594
3393
|
AGERATING12: AGERATING12$1,
|
|
3595
3394
|
AGERATING18: AGERATING18$1,
|
|
3596
3395
|
COMMERCIAL: COMMERCIAL$1,
|
|
@@ -3602,69 +3401,55 @@ var it = {
|
|
|
3602
3401
|
UNKNOWN: UNKNOWN$1
|
|
3603
3402
|
};
|
|
3604
3403
|
|
|
3605
|
-
var pillarboxLang$1 = /*#__PURE__*/Object.freeze({
|
|
3606
|
-
__proto__: null,
|
|
3607
|
-
AGERATING12: AGERATING12$1,
|
|
3608
|
-
AGERATING18: AGERATING18$1,
|
|
3609
|
-
COMMERCIAL: COMMERCIAL$1,
|
|
3610
|
-
ENDDATE: ENDDATE$1,
|
|
3611
|
-
GEOBLOCK: GEOBLOCK$1,
|
|
3612
|
-
JOURNALISTIC: JOURNALISTIC$1,
|
|
3613
|
-
LEGAL: LEGAL$1,
|
|
3614
|
-
STARTDATE: STARTDATE$1,
|
|
3615
|
-
UNKNOWN: UNKNOWN$1,
|
|
3616
|
-
default: it
|
|
3617
|
-
});
|
|
3618
|
-
|
|
3619
3404
|
pillarbox.addLanguage('it', _objectSpread2(_objectSpread2({}, vjsLang), pillarboxLang$1));
|
|
3620
3405
|
|
|
3621
|
-
|
|
3622
|
-
|
|
3623
|
-
|
|
3624
|
-
|
|
3625
|
-
|
|
3626
|
-
|
|
3627
|
-
|
|
3628
|
-
|
|
3629
|
-
|
|
3630
|
-
|
|
3631
|
-
|
|
3632
|
-
|
|
3633
|
-
|
|
3634
|
-
|
|
3635
|
-
|
|
3636
|
-
|
|
3637
|
-
|
|
3638
|
-
|
|
3639
|
-
|
|
3640
|
-
|
|
3641
|
-
|
|
3642
|
-
|
|
3643
|
-
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
|
|
3651
|
-
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
|
|
3655
|
-
|
|
3656
|
-
|
|
3657
|
-
|
|
3658
|
-
|
|
3659
|
-
|
|
3660
|
-
|
|
3661
|
-
|
|
3662
|
-
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
|
|
3667
|
-
|
|
3406
|
+
const Play = "Laschar ir";
|
|
3407
|
+
const Pause = "Pausa";
|
|
3408
|
+
const Replay = "Mussar danovamain";
|
|
3409
|
+
const Duration = "Durada";
|
|
3410
|
+
const LIVE = "LIVE";
|
|
3411
|
+
const Loaded = "Chargià";
|
|
3412
|
+
const Progress = "Progress";
|
|
3413
|
+
const Fullscreen = "Entir visur";
|
|
3414
|
+
const Mute = "Senza tun";
|
|
3415
|
+
const Unmute = "Cun tun";
|
|
3416
|
+
const Subtitles = "Suttitels";
|
|
3417
|
+
const Captions = "Suttitels";
|
|
3418
|
+
const Chapters = "Chapitels";
|
|
3419
|
+
const Descriptions = "Descripziuns";
|
|
3420
|
+
const Close = "Serrar";
|
|
3421
|
+
const Text = "Text";
|
|
3422
|
+
const White = "Alv";
|
|
3423
|
+
const Black = "Nair";
|
|
3424
|
+
const Red = "Cotschn";
|
|
3425
|
+
const Green = "Verd";
|
|
3426
|
+
const Blue = "Blau";
|
|
3427
|
+
const Yellow = "Mellen";
|
|
3428
|
+
const Magenta = "Magenta";
|
|
3429
|
+
const Cyan = "Cyan";
|
|
3430
|
+
const Background = "Fund";
|
|
3431
|
+
const Window = "Fanestra";
|
|
3432
|
+
const Transparent = "Transparent";
|
|
3433
|
+
const Opaque = "Betg transparent";
|
|
3434
|
+
const None = "Nagin";
|
|
3435
|
+
const Raised = "Auzà";
|
|
3436
|
+
const Depressed = "Sbassà";
|
|
3437
|
+
const Uniform = "Uniform";
|
|
3438
|
+
const Dropshadow = "Sumbriva";
|
|
3439
|
+
const Casual = "Casual";
|
|
3440
|
+
const Script = "Script";
|
|
3441
|
+
const Reset = "Da nov";
|
|
3442
|
+
const Done = "Fatg";
|
|
3443
|
+
const AGERATING12 = "Per proteger uffants, è quest cuntegn disponibel mo tranter las 20.00 e las 06.00.";
|
|
3444
|
+
const AGERATING18 = "Per proteger uffants, è quest cuntegn disponibel mo tranter las 23.00 e las 05.00.";
|
|
3445
|
+
const COMMERCIAL = "Quest medium commerzial n'è betg disponibel.";
|
|
3446
|
+
const ENDDATE = "Quest cuntegn n'è betg pli disponibel.";
|
|
3447
|
+
const GEOBLOCK = "Quest cuntegn n'è betg disponibel ordaifer la Svizra.";
|
|
3448
|
+
const JOURNALISTIC = "Quest cuntegn na stat ad interim betg a disposiziun per motivs publicistics.";
|
|
3449
|
+
const LEGAL = "Quest cuntegn n'è betg disponibel perquai ch'el è scadì.";
|
|
3450
|
+
const STARTDATE = "Quest cuntegn n'è betg anc disponibel. Empruvai pli tard.";
|
|
3451
|
+
const UNKNOWN = "Quest cuntegn n'è betg disponibel.";
|
|
3452
|
+
const pillarboxLang = {
|
|
3668
3453
|
"Audio Player": "Audio-Player",
|
|
3669
3454
|
"Video Player": "Video-Player",
|
|
3670
3455
|
Play: Play,
|
|
@@ -3758,57 +3543,6 @@ var rm = {
|
|
|
3758
3543
|
UNKNOWN: UNKNOWN
|
|
3759
3544
|
};
|
|
3760
3545
|
|
|
3761
|
-
var pillarboxLang = /*#__PURE__*/Object.freeze({
|
|
3762
|
-
__proto__: null,
|
|
3763
|
-
AGERATING12: AGERATING12,
|
|
3764
|
-
AGERATING18: AGERATING18,
|
|
3765
|
-
Background: Background,
|
|
3766
|
-
Black: Black,
|
|
3767
|
-
Blue: Blue,
|
|
3768
|
-
COMMERCIAL: COMMERCIAL,
|
|
3769
|
-
Captions: Captions,
|
|
3770
|
-
Casual: Casual,
|
|
3771
|
-
Chapters: Chapters,
|
|
3772
|
-
Close: Close,
|
|
3773
|
-
Cyan: Cyan,
|
|
3774
|
-
Depressed: Depressed,
|
|
3775
|
-
Descriptions: Descriptions,
|
|
3776
|
-
Done: Done,
|
|
3777
|
-
Dropshadow: Dropshadow,
|
|
3778
|
-
Duration: Duration,
|
|
3779
|
-
ENDDATE: ENDDATE,
|
|
3780
|
-
Fullscreen: Fullscreen,
|
|
3781
|
-
GEOBLOCK: GEOBLOCK,
|
|
3782
|
-
Green: Green,
|
|
3783
|
-
JOURNALISTIC: JOURNALISTIC,
|
|
3784
|
-
LEGAL: LEGAL,
|
|
3785
|
-
LIVE: LIVE,
|
|
3786
|
-
Loaded: Loaded,
|
|
3787
|
-
Magenta: Magenta,
|
|
3788
|
-
Mute: Mute,
|
|
3789
|
-
None: None,
|
|
3790
|
-
Opaque: Opaque,
|
|
3791
|
-
Pause: Pause,
|
|
3792
|
-
Play: Play,
|
|
3793
|
-
Progress: Progress,
|
|
3794
|
-
Raised: Raised,
|
|
3795
|
-
Red: Red,
|
|
3796
|
-
Replay: Replay,
|
|
3797
|
-
Reset: Reset,
|
|
3798
|
-
STARTDATE: STARTDATE,
|
|
3799
|
-
Script: Script,
|
|
3800
|
-
Subtitles: Subtitles,
|
|
3801
|
-
Text: Text,
|
|
3802
|
-
Transparent: Transparent,
|
|
3803
|
-
UNKNOWN: UNKNOWN,
|
|
3804
|
-
Uniform: Uniform,
|
|
3805
|
-
Unmute: Unmute,
|
|
3806
|
-
White: White,
|
|
3807
|
-
Window: Window,
|
|
3808
|
-
Yellow: Yellow,
|
|
3809
|
-
default: rm
|
|
3810
|
-
});
|
|
3811
|
-
|
|
3812
3546
|
pillarbox.addLanguage('rm', _objectSpread2({}, pillarboxLang));
|
|
3813
3547
|
|
|
3814
3548
|
const _excluded = ["url", "mimeType", "keySystems"],
|
|
@@ -4440,3 +4174,4 @@ pillarbox.options.srgOptions = {
|
|
|
4440
4174
|
};
|
|
4441
4175
|
|
|
4442
4176
|
module.exports = pillarbox;
|
|
4177
|
+
//# sourceMappingURL=pillarbox.cjs.js.map
|