@srgssr/pillarbox-web 1.14.1 → 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 -529
- package/dist/pillarbox.cjs.js.map +1 -0
- package/dist/pillarbox.es.js +264 -528
- 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 -1212
- 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/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
|
*
|
|
@@ -2770,45 +2780,45 @@ class MediaComposition {
|
|
|
2770
2780
|
* @typedef {import('./typedef').MainResource} MainResource
|
|
2771
2781
|
*/
|
|
2772
2782
|
|
|
2773
|
-
|
|
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
|
-
|
|
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 = {
|
|
2812
2822
|
Play: Play$4,
|
|
2813
2823
|
Pause: Pause$4,
|
|
2814
2824
|
Replay: Replay$4,
|
|
@@ -2906,59 +2916,16 @@ var de$1 = {
|
|
|
2906
2916
|
"Skip backward {1} seconds": "{1} Sekunden zurück"
|
|
2907
2917
|
};
|
|
2908
2918
|
|
|
2909
|
-
|
|
2910
|
-
|
|
2911
|
-
|
|
2912
|
-
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
|
|
2916
|
-
|
|
2917
|
-
|
|
2918
|
-
|
|
2919
|
-
Cyan: Cyan$4,
|
|
2920
|
-
Depressed: Depressed$3,
|
|
2921
|
-
Descriptions: Descriptions$4,
|
|
2922
|
-
Done: Done$4,
|
|
2923
|
-
Duration: Duration$4,
|
|
2924
|
-
Fullscreen: Fullscreen$4,
|
|
2925
|
-
Green: Green$4,
|
|
2926
|
-
LIVE: LIVE$4,
|
|
2927
|
-
Loaded: Loaded$4,
|
|
2928
|
-
Magenta: Magenta$4,
|
|
2929
|
-
Mute: Mute$4,
|
|
2930
|
-
None: None$4,
|
|
2931
|
-
Opacity: Opacity$3,
|
|
2932
|
-
Opaque: Opaque$4,
|
|
2933
|
-
Pause: Pause$4,
|
|
2934
|
-
Play: Play$4,
|
|
2935
|
-
Progress: Progress$4,
|
|
2936
|
-
Raised: Raised$3,
|
|
2937
|
-
Red: Red$4,
|
|
2938
|
-
Replay: Replay$4,
|
|
2939
|
-
Reset: Reset$4,
|
|
2940
|
-
Script: Script$3,
|
|
2941
|
-
Subtitles: Subtitles$4,
|
|
2942
|
-
Text: Text$4,
|
|
2943
|
-
Transparent: Transparent$4,
|
|
2944
|
-
Uniform: Uniform$4,
|
|
2945
|
-
Unmute: Unmute$4,
|
|
2946
|
-
White: White$4,
|
|
2947
|
-
Window: Window$4,
|
|
2948
|
-
Yellow: Yellow$4,
|
|
2949
|
-
default: de$1
|
|
2950
|
-
});
|
|
2951
|
-
|
|
2952
|
-
var AGERATING12$4 = "Aus Gründen des Jugendschutzes steht dieser Inhalt nur zwischen 20:00 und 06:00 Uhr zur Verfügung.";
|
|
2953
|
-
var AGERATING18$4 = "Aus Gründen des Jugendschutzes steht dieser Inhalt nur zwischen 23:00 und 05:00 Uhr zur Verfügung.";
|
|
2954
|
-
var COMMERCIAL$4 = "Die Werbung wurde übersprungen.";
|
|
2955
|
-
var ENDDATE$4 = "Dieser Inhalt ist nicht mehr verfügbar.";
|
|
2956
|
-
var GEOBLOCK$4 = "Dieser Inhalt ist ausserhalb der Schweiz nicht verfügbar.";
|
|
2957
|
-
var JOURNALISTIC$4 = "Dieser Inhalt steht aus publizistischen Gründen vorübergehend nicht zur Verfügung.";
|
|
2958
|
-
var LEGAL$4 = "Dieser Inhalt ist aus rechtlichen Gründen nicht verfügbar.";
|
|
2959
|
-
var STARTDATE$4 = "Dieser Inhalt ist noch nicht verfügbar. Bitte probieren Sie es später noch einmal.";
|
|
2960
|
-
var UNKNOWN$4 = "Dieser Inhalt ist nicht verfügbar.";
|
|
2961
|
-
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 = {
|
|
2962
2929
|
AGERATING12: AGERATING12$4,
|
|
2963
2930
|
AGERATING18: AGERATING18$4,
|
|
2964
2931
|
COMMERCIAL: COMMERCIAL$4,
|
|
@@ -2970,61 +2937,47 @@ var de = {
|
|
|
2970
2937
|
UNKNOWN: UNKNOWN$4
|
|
2971
2938
|
};
|
|
2972
2939
|
|
|
2973
|
-
var pillarboxLang$4 = /*#__PURE__*/Object.freeze({
|
|
2974
|
-
__proto__: null,
|
|
2975
|
-
AGERATING12: AGERATING12$4,
|
|
2976
|
-
AGERATING18: AGERATING18$4,
|
|
2977
|
-
COMMERCIAL: COMMERCIAL$4,
|
|
2978
|
-
ENDDATE: ENDDATE$4,
|
|
2979
|
-
GEOBLOCK: GEOBLOCK$4,
|
|
2980
|
-
JOURNALISTIC: JOURNALISTIC$4,
|
|
2981
|
-
LEGAL: LEGAL$4,
|
|
2982
|
-
STARTDATE: STARTDATE$4,
|
|
2983
|
-
UNKNOWN: UNKNOWN$4,
|
|
2984
|
-
default: de
|
|
2985
|
-
});
|
|
2986
|
-
|
|
2987
2940
|
pillarbox.addLanguage('de', _objectSpread2(_objectSpread2({}, vjsLang$3), pillarboxLang$4));
|
|
2988
2941
|
|
|
2989
|
-
|
|
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
|
-
|
|
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 = {
|
|
3028
2981
|
"Audio Player": "Audio Player",
|
|
3029
2982
|
"Video Player": "Video Player",
|
|
3030
2983
|
Play: Play$3,
|
|
@@ -3122,59 +3075,16 @@ var en$1 = {
|
|
|
3122
3075
|
"Skip forward {1} seconds": "Skip forward {1} seconds"
|
|
3123
3076
|
};
|
|
3124
3077
|
|
|
3125
|
-
|
|
3126
|
-
|
|
3127
|
-
|
|
3128
|
-
|
|
3129
|
-
|
|
3130
|
-
|
|
3131
|
-
|
|
3132
|
-
|
|
3133
|
-
|
|
3134
|
-
|
|
3135
|
-
Cyan: Cyan$3,
|
|
3136
|
-
Depressed: Depressed$2,
|
|
3137
|
-
Descriptions: Descriptions$3,
|
|
3138
|
-
Done: Done$3,
|
|
3139
|
-
Duration: Duration$3,
|
|
3140
|
-
Fullscreen: Fullscreen$3,
|
|
3141
|
-
Green: Green$3,
|
|
3142
|
-
LIVE: LIVE$3,
|
|
3143
|
-
Loaded: Loaded$3,
|
|
3144
|
-
Magenta: Magenta$3,
|
|
3145
|
-
Mute: Mute$3,
|
|
3146
|
-
None: None$3,
|
|
3147
|
-
Opacity: Opacity$2,
|
|
3148
|
-
Opaque: Opaque$3,
|
|
3149
|
-
Pause: Pause$3,
|
|
3150
|
-
Play: Play$3,
|
|
3151
|
-
Progress: Progress$3,
|
|
3152
|
-
Raised: Raised$2,
|
|
3153
|
-
Red: Red$3,
|
|
3154
|
-
Replay: Replay$3,
|
|
3155
|
-
Reset: Reset$3,
|
|
3156
|
-
Script: Script$2,
|
|
3157
|
-
Subtitles: Subtitles$3,
|
|
3158
|
-
Text: Text$3,
|
|
3159
|
-
Transparent: Transparent$3,
|
|
3160
|
-
Uniform: Uniform$3,
|
|
3161
|
-
Unmute: Unmute$3,
|
|
3162
|
-
White: White$3,
|
|
3163
|
-
Window: Window$3,
|
|
3164
|
-
Yellow: Yellow$3,
|
|
3165
|
-
default: en$1
|
|
3166
|
-
});
|
|
3167
|
-
|
|
3168
|
-
var AGERATING12$3 = "To protect children this content is only available between 8PM and 6AM.";
|
|
3169
|
-
var AGERATING18$3 = "To protect children this content is only available between 10PM and 5AM.";
|
|
3170
|
-
var COMMERCIAL$3 = "This commercial content is not available.";
|
|
3171
|
-
var ENDDATE$3 = "This content is not available anymore.";
|
|
3172
|
-
var GEOBLOCK$3 = "This content is not available outside Switzerland.";
|
|
3173
|
-
var JOURNALISTIC$3 = "This content is temporarily unavailable for journalistic reasons.";
|
|
3174
|
-
var LEGAL$3 = "This content is not available due to legal restrictions.";
|
|
3175
|
-
var STARTDATE$3 = "This content is not available yet.";
|
|
3176
|
-
var UNKNOWN$3 = "This content is not available.";
|
|
3177
|
-
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 = {
|
|
3178
3088
|
AGERATING12: AGERATING12$3,
|
|
3179
3089
|
AGERATING18: AGERATING18$3,
|
|
3180
3090
|
COMMERCIAL: COMMERCIAL$3,
|
|
@@ -3186,61 +3096,47 @@ var en = {
|
|
|
3186
3096
|
UNKNOWN: UNKNOWN$3
|
|
3187
3097
|
};
|
|
3188
3098
|
|
|
3189
|
-
var pillarboxLang$3 = /*#__PURE__*/Object.freeze({
|
|
3190
|
-
__proto__: null,
|
|
3191
|
-
AGERATING12: AGERATING12$3,
|
|
3192
|
-
AGERATING18: AGERATING18$3,
|
|
3193
|
-
COMMERCIAL: COMMERCIAL$3,
|
|
3194
|
-
ENDDATE: ENDDATE$3,
|
|
3195
|
-
GEOBLOCK: GEOBLOCK$3,
|
|
3196
|
-
JOURNALISTIC: JOURNALISTIC$3,
|
|
3197
|
-
LEGAL: LEGAL$3,
|
|
3198
|
-
STARTDATE: STARTDATE$3,
|
|
3199
|
-
UNKNOWN: UNKNOWN$3,
|
|
3200
|
-
default: en
|
|
3201
|
-
});
|
|
3202
|
-
|
|
3203
3099
|
pillarbox.addLanguage('en', _objectSpread2(_objectSpread2({}, vjsLang$2), pillarboxLang$3));
|
|
3204
3100
|
|
|
3205
|
-
|
|
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
|
-
|
|
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 = {
|
|
3244
3140
|
"Audio Player": "Lecteur audio",
|
|
3245
3141
|
"Video Player": "Lecteur vidéo",
|
|
3246
3142
|
Play: Play$2,
|
|
@@ -3337,59 +3233,16 @@ var fr$1 = {
|
|
|
3337
3233
|
"Skip forward {1} seconds": "Avancer de {1} secondes"
|
|
3338
3234
|
};
|
|
3339
3235
|
|
|
3340
|
-
|
|
3341
|
-
|
|
3342
|
-
|
|
3343
|
-
|
|
3344
|
-
|
|
3345
|
-
|
|
3346
|
-
|
|
3347
|
-
|
|
3348
|
-
|
|
3349
|
-
|
|
3350
|
-
Cyan: Cyan$2,
|
|
3351
|
-
Depressed: Depressed$1,
|
|
3352
|
-
Descriptions: Descriptions$2,
|
|
3353
|
-
Done: Done$2,
|
|
3354
|
-
Duration: Duration$2,
|
|
3355
|
-
Fullscreen: Fullscreen$2,
|
|
3356
|
-
Green: Green$2,
|
|
3357
|
-
LIVE: LIVE$2,
|
|
3358
|
-
Loaded: Loaded$2,
|
|
3359
|
-
Magenta: Magenta$2,
|
|
3360
|
-
Mute: Mute$2,
|
|
3361
|
-
None: None$2,
|
|
3362
|
-
Opacity: Opacity$1,
|
|
3363
|
-
Opaque: Opaque$2,
|
|
3364
|
-
Pause: Pause$2,
|
|
3365
|
-
Play: Play$2,
|
|
3366
|
-
Progress: Progress$2,
|
|
3367
|
-
Raised: Raised$1,
|
|
3368
|
-
Red: Red$2,
|
|
3369
|
-
Replay: Replay$2,
|
|
3370
|
-
Reset: Reset$2,
|
|
3371
|
-
Script: Script$1,
|
|
3372
|
-
Subtitles: Subtitles$2,
|
|
3373
|
-
Text: Text$2,
|
|
3374
|
-
Transparent: Transparent$2,
|
|
3375
|
-
Uniform: Uniform$2,
|
|
3376
|
-
Unmute: Unmute$2,
|
|
3377
|
-
White: White$2,
|
|
3378
|
-
Window: Window$2,
|
|
3379
|
-
Yellow: Yellow$2,
|
|
3380
|
-
default: fr$1
|
|
3381
|
-
});
|
|
3382
|
-
|
|
3383
|
-
var AGERATING12$2 = "Pour protéger les enfants, ce contenu est accessible entre 20h et 6h.";
|
|
3384
|
-
var AGERATING18$2 = "Pour protéger les enfants, ce contenu est accessible entre 23h et 5h.";
|
|
3385
|
-
var COMMERCIAL$2 = "Ce contenu n'est actuellement pas disponible.";
|
|
3386
|
-
var ENDDATE$2 = "Ce contenu n'est plus disponible.";
|
|
3387
|
-
var GEOBLOCK$2 = "La RTS ne dispose pas des droits de diffusion en dehors de la Suisse.";
|
|
3388
|
-
var JOURNALISTIC$2 = "Ce contenu est temporairement indisponible pour des raisons éditoriales.";
|
|
3389
|
-
var LEGAL$2 = "Pour des raisons juridiques, ce contenu n'est pas disponible.";
|
|
3390
|
-
var STARTDATE$2 = "Ce contenu n'est pas encore disponible. Veuillez réessayer plus tard.";
|
|
3391
|
-
var UNKNOWN$2 = "Ce contenu n'est actuellement pas disponible.";
|
|
3392
|
-
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 = {
|
|
3393
3246
|
AGERATING12: AGERATING12$2,
|
|
3394
3247
|
AGERATING18: AGERATING18$2,
|
|
3395
3248
|
COMMERCIAL: COMMERCIAL$2,
|
|
@@ -3401,57 +3254,43 @@ var fr = {
|
|
|
3401
3254
|
UNKNOWN: UNKNOWN$2
|
|
3402
3255
|
};
|
|
3403
3256
|
|
|
3404
|
-
var pillarboxLang$2 = /*#__PURE__*/Object.freeze({
|
|
3405
|
-
__proto__: null,
|
|
3406
|
-
AGERATING12: AGERATING12$2,
|
|
3407
|
-
AGERATING18: AGERATING18$2,
|
|
3408
|
-
COMMERCIAL: COMMERCIAL$2,
|
|
3409
|
-
ENDDATE: ENDDATE$2,
|
|
3410
|
-
GEOBLOCK: GEOBLOCK$2,
|
|
3411
|
-
JOURNALISTIC: JOURNALISTIC$2,
|
|
3412
|
-
LEGAL: LEGAL$2,
|
|
3413
|
-
STARTDATE: STARTDATE$2,
|
|
3414
|
-
UNKNOWN: UNKNOWN$2,
|
|
3415
|
-
default: fr
|
|
3416
|
-
});
|
|
3417
|
-
|
|
3418
3257
|
pillarbox.addLanguage('fr', _objectSpread2(_objectSpread2({}, vjsLang$1), pillarboxLang$2));
|
|
3419
3258
|
|
|
3420
|
-
|
|
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
|
-
|
|
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 = {
|
|
3455
3294
|
"Audio Player": "Lettore audio",
|
|
3456
3295
|
"Video Player": "Lettore video",
|
|
3457
3296
|
Play: Play$1,
|
|
@@ -3474,7 +3313,7 @@ var it$1 = {
|
|
|
3474
3313
|
Subtitles: Subtitles$1,
|
|
3475
3314
|
"subtitles off": "Senza sottotitoli",
|
|
3476
3315
|
Captions: Captions$1,
|
|
3477
|
-
"captions off": "Senza
|
|
3316
|
+
"captions off": "Senza didascalie",
|
|
3478
3317
|
Chapters: Chapters$1,
|
|
3479
3318
|
Descriptions: Descriptions$1,
|
|
3480
3319
|
"descriptions off": "Descrizioni disattivate",
|
|
@@ -3492,13 +3331,13 @@ var it$1 = {
|
|
|
3492
3331
|
"Modal Window": "Finestra di dialogo",
|
|
3493
3332
|
"This is a modal window": "Questa è una finestra di dialogo",
|
|
3494
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.",
|
|
3495
|
-
", opens captions settings dialog": ", aprire
|
|
3496
|
-
", opens subtitles settings dialog": ", aprire
|
|
3497
|
-
", 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",
|
|
3498
3337
|
", selected": ", selezionato",
|
|
3499
|
-
"captions settings": "
|
|
3500
|
-
"subtitles settings": "
|
|
3501
|
-
"descriptions settings": "
|
|
3338
|
+
"captions settings": "Impostazioni didascalie",
|
|
3339
|
+
"subtitles settings": "Impostazioni sottotitoli",
|
|
3340
|
+
"descriptions settings": "Impostazioni descrizioni",
|
|
3502
3341
|
Text: Text$1,
|
|
3503
3342
|
White: White$1,
|
|
3504
3343
|
Black: Black$1,
|
|
@@ -3541,55 +3380,16 @@ var it$1 = {
|
|
|
3541
3380
|
"Skip backward {1} seconds": "Indietro {1} secondi"
|
|
3542
3381
|
};
|
|
3543
3382
|
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
Descriptions: Descriptions$1,
|
|
3555
|
-
Done: Done$1,
|
|
3556
|
-
Duration: Duration$1,
|
|
3557
|
-
Fullscreen: Fullscreen$1,
|
|
3558
|
-
Green: Green$1,
|
|
3559
|
-
LIVE: LIVE$1,
|
|
3560
|
-
Loaded: Loaded$1,
|
|
3561
|
-
Magenta: Magenta$1,
|
|
3562
|
-
Mute: Mute$1,
|
|
3563
|
-
None: None$1,
|
|
3564
|
-
Opacity: Opacity,
|
|
3565
|
-
Opaque: Opaque$1,
|
|
3566
|
-
Pause: Pause$1,
|
|
3567
|
-
Play: Play$1,
|
|
3568
|
-
Progress: Progress$1,
|
|
3569
|
-
Red: Red$1,
|
|
3570
|
-
Replay: Replay$1,
|
|
3571
|
-
Reset: Reset$1,
|
|
3572
|
-
Subtitles: Subtitles$1,
|
|
3573
|
-
Text: Text$1,
|
|
3574
|
-
Transparent: Transparent$1,
|
|
3575
|
-
Uniform: Uniform$1,
|
|
3576
|
-
Unmute: Unmute$1,
|
|
3577
|
-
White: White$1,
|
|
3578
|
-
Window: Window$1,
|
|
3579
|
-
Yellow: Yellow$1,
|
|
3580
|
-
default: it$1
|
|
3581
|
-
});
|
|
3582
|
-
|
|
3583
|
-
var AGERATING12$1 = "Per proteggere i bambini, questo media è disponibile solo fra le 20 e le 6.";
|
|
3584
|
-
var AGERATING18$1 = "Per proteggere i bambini, questo media è disponibile solo fra le 23 le 5.";
|
|
3585
|
-
var COMMERCIAL$1 = "Questo contenuto commerciale non è disponibile.";
|
|
3586
|
-
var ENDDATE$1 = "Questo media non è più disponibile.";
|
|
3587
|
-
var GEOBLOCK$1 = "Questo media non è disponibile fuori dalla Svizzera.";
|
|
3588
|
-
var JOURNALISTIC$1 = "Questo contenuto è temporaneamente non disponibile per motivi editoriali.";
|
|
3589
|
-
var LEGAL$1 = "Il contenuto non è fruibile a causa di restrizioni legali.";
|
|
3590
|
-
var STARTDATE$1 = "Il contenuto non è ancora disponibile. Per cortesia prova più tardi.";
|
|
3591
|
-
var UNKNOWN$1 = "Questo media non è disponibile.";
|
|
3592
|
-
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 = {
|
|
3593
3393
|
AGERATING12: AGERATING12$1,
|
|
3594
3394
|
AGERATING18: AGERATING18$1,
|
|
3595
3395
|
COMMERCIAL: COMMERCIAL$1,
|
|
@@ -3601,69 +3401,55 @@ var it = {
|
|
|
3601
3401
|
UNKNOWN: UNKNOWN$1
|
|
3602
3402
|
};
|
|
3603
3403
|
|
|
3604
|
-
var pillarboxLang$1 = /*#__PURE__*/Object.freeze({
|
|
3605
|
-
__proto__: null,
|
|
3606
|
-
AGERATING12: AGERATING12$1,
|
|
3607
|
-
AGERATING18: AGERATING18$1,
|
|
3608
|
-
COMMERCIAL: COMMERCIAL$1,
|
|
3609
|
-
ENDDATE: ENDDATE$1,
|
|
3610
|
-
GEOBLOCK: GEOBLOCK$1,
|
|
3611
|
-
JOURNALISTIC: JOURNALISTIC$1,
|
|
3612
|
-
LEGAL: LEGAL$1,
|
|
3613
|
-
STARTDATE: STARTDATE$1,
|
|
3614
|
-
UNKNOWN: UNKNOWN$1,
|
|
3615
|
-
default: it
|
|
3616
|
-
});
|
|
3617
|
-
|
|
3618
3404
|
pillarbox.addLanguage('it', _objectSpread2(_objectSpread2({}, vjsLang), pillarboxLang$1));
|
|
3619
3405
|
|
|
3620
|
-
|
|
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
|
-
|
|
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 = {
|
|
3667
3453
|
"Audio Player": "Audio-Player",
|
|
3668
3454
|
"Video Player": "Video-Player",
|
|
3669
3455
|
Play: Play,
|
|
@@ -3757,57 +3543,6 @@ var rm = {
|
|
|
3757
3543
|
UNKNOWN: UNKNOWN
|
|
3758
3544
|
};
|
|
3759
3545
|
|
|
3760
|
-
var pillarboxLang = /*#__PURE__*/Object.freeze({
|
|
3761
|
-
__proto__: null,
|
|
3762
|
-
AGERATING12: AGERATING12,
|
|
3763
|
-
AGERATING18: AGERATING18,
|
|
3764
|
-
Background: Background,
|
|
3765
|
-
Black: Black,
|
|
3766
|
-
Blue: Blue,
|
|
3767
|
-
COMMERCIAL: COMMERCIAL,
|
|
3768
|
-
Captions: Captions,
|
|
3769
|
-
Casual: Casual,
|
|
3770
|
-
Chapters: Chapters,
|
|
3771
|
-
Close: Close,
|
|
3772
|
-
Cyan: Cyan,
|
|
3773
|
-
Depressed: Depressed,
|
|
3774
|
-
Descriptions: Descriptions,
|
|
3775
|
-
Done: Done,
|
|
3776
|
-
Dropshadow: Dropshadow,
|
|
3777
|
-
Duration: Duration,
|
|
3778
|
-
ENDDATE: ENDDATE,
|
|
3779
|
-
Fullscreen: Fullscreen,
|
|
3780
|
-
GEOBLOCK: GEOBLOCK,
|
|
3781
|
-
Green: Green,
|
|
3782
|
-
JOURNALISTIC: JOURNALISTIC,
|
|
3783
|
-
LEGAL: LEGAL,
|
|
3784
|
-
LIVE: LIVE,
|
|
3785
|
-
Loaded: Loaded,
|
|
3786
|
-
Magenta: Magenta,
|
|
3787
|
-
Mute: Mute,
|
|
3788
|
-
None: None,
|
|
3789
|
-
Opaque: Opaque,
|
|
3790
|
-
Pause: Pause,
|
|
3791
|
-
Play: Play,
|
|
3792
|
-
Progress: Progress,
|
|
3793
|
-
Raised: Raised,
|
|
3794
|
-
Red: Red,
|
|
3795
|
-
Replay: Replay,
|
|
3796
|
-
Reset: Reset,
|
|
3797
|
-
STARTDATE: STARTDATE,
|
|
3798
|
-
Script: Script,
|
|
3799
|
-
Subtitles: Subtitles,
|
|
3800
|
-
Text: Text,
|
|
3801
|
-
Transparent: Transparent,
|
|
3802
|
-
UNKNOWN: UNKNOWN,
|
|
3803
|
-
Uniform: Uniform,
|
|
3804
|
-
Unmute: Unmute,
|
|
3805
|
-
White: White,
|
|
3806
|
-
Window: Window,
|
|
3807
|
-
Yellow: Yellow,
|
|
3808
|
-
default: rm
|
|
3809
|
-
});
|
|
3810
|
-
|
|
3811
3546
|
pillarbox.addLanguage('rm', _objectSpread2({}, pillarboxLang));
|
|
3812
3547
|
|
|
3813
3548
|
const _excluded = ["url", "mimeType", "keySystems"],
|
|
@@ -4439,3 +4174,4 @@ pillarbox.options.srgOptions = {
|
|
|
4439
4174
|
};
|
|
4440
4175
|
|
|
4441
4176
|
module.exports = pillarbox;
|
|
4177
|
+
//# sourceMappingURL=pillarbox.cjs.js.map
|