@srgssr/pillarbox-web 1.14.1 → 1.15.1
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/README.md +117 -0
- 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 +11 -21
- 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.es.js
CHANGED
|
@@ -83,12 +83,11 @@ function _defineProperty(obj, key, value) {
|
|
|
83
83
|
function _objectWithoutPropertiesLoose(source, excluded) {
|
|
84
84
|
if (source == null) return {};
|
|
85
85
|
var target = {};
|
|
86
|
-
var
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
target[key] = source[key];
|
|
86
|
+
for (var key in source) {
|
|
87
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
88
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
89
|
+
target[key] = source[key];
|
|
90
|
+
}
|
|
92
91
|
}
|
|
93
92
|
return target;
|
|
94
93
|
}
|
|
@@ -108,7 +107,7 @@ function _objectWithoutProperties(source, excluded) {
|
|
|
108
107
|
return target;
|
|
109
108
|
}
|
|
110
109
|
|
|
111
|
-
|
|
110
|
+
const version = "1.15.0";
|
|
112
111
|
|
|
113
112
|
/**
|
|
114
113
|
* @ignore
|
|
@@ -1189,6 +1188,7 @@ class SRGAnalytics {
|
|
|
1189
1188
|
};
|
|
1190
1189
|
if (this.isAudioTrackEnabled()) {
|
|
1191
1190
|
labels.media_audio_track = this.getCurrentAudioTrack();
|
|
1191
|
+
labels.media_audiodescription_on = this.isAudioDescriptionEnabled();
|
|
1192
1192
|
}
|
|
1193
1193
|
if (this.isTextTrackEnabled()) {
|
|
1194
1194
|
labels.media_subtitle_selection = this.getCurrentTextTrack();
|
|
@@ -1329,6 +1329,16 @@ class SRGAnalytics {
|
|
|
1329
1329
|
}
|
|
1330
1330
|
}
|
|
1331
1331
|
|
|
1332
|
+
/**
|
|
1333
|
+
* Check if the audio description track is enabled.
|
|
1334
|
+
*
|
|
1335
|
+
* @returns {Boolean} __true__ if enabled __false__ otherwise.
|
|
1336
|
+
*/
|
|
1337
|
+
isAudioDescriptionEnabled() {
|
|
1338
|
+
const currentTrack = Array.from(this.player.audioTracks()).find(track => track.enabled && track.kind.includes('desc'));
|
|
1339
|
+
return Boolean(currentTrack);
|
|
1340
|
+
}
|
|
1341
|
+
|
|
1332
1342
|
/**
|
|
1333
1343
|
* Check if the audio track is enabled.
|
|
1334
1344
|
*
|
|
@@ -2768,45 +2778,45 @@ class MediaComposition {
|
|
|
2768
2778
|
* @typedef {import('./typedef').MainResource} MainResource
|
|
2769
2779
|
*/
|
|
2770
2780
|
|
|
2771
|
-
|
|
2772
|
-
|
|
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
|
-
|
|
2781
|
+
const Play$4 = "Wiedergabe";
|
|
2782
|
+
const Pause$4 = "Pause";
|
|
2783
|
+
const Replay$4 = "Erneut abspielen";
|
|
2784
|
+
const Duration$4 = "Dauer";
|
|
2785
|
+
const LIVE$4 = "LIVE";
|
|
2786
|
+
const Loaded$4 = "Geladen";
|
|
2787
|
+
const Progress$4 = "Status";
|
|
2788
|
+
const Fullscreen$4 = "Vollbild";
|
|
2789
|
+
const Mute$4 = "Stumm schalten";
|
|
2790
|
+
const Unmute$4 = "Ton einschalten";
|
|
2791
|
+
const Subtitles$4 = "Untertitel";
|
|
2792
|
+
const Captions$4 = "Untertitel";
|
|
2793
|
+
const Chapters$4 = "Kapitel";
|
|
2794
|
+
const Close$4 = "Schließen";
|
|
2795
|
+
const Descriptions$4 = "Beschreibungen";
|
|
2796
|
+
const Text$4 = "Schrift";
|
|
2797
|
+
const White$4 = "Weiß";
|
|
2798
|
+
const Black$4 = "Schwarz";
|
|
2799
|
+
const Red$4 = "Rot";
|
|
2800
|
+
const Green$4 = "Grün";
|
|
2801
|
+
const Blue$4 = "Blau";
|
|
2802
|
+
const Yellow$4 = "Gelb";
|
|
2803
|
+
const Magenta$4 = "Magenta";
|
|
2804
|
+
const Cyan$4 = "Türkis";
|
|
2805
|
+
const Background$4 = "Hintergrund";
|
|
2806
|
+
const Window$4 = "Fenster";
|
|
2807
|
+
const Transparent$4 = "Durchsichtig";
|
|
2808
|
+
const Opaque$4 = "Undurchsichtig";
|
|
2809
|
+
const None$4 = "Kein";
|
|
2810
|
+
const Raised$3 = "Erhoben";
|
|
2811
|
+
const Depressed$3 = "Gedrückt";
|
|
2812
|
+
const Uniform$4 = "Uniform";
|
|
2813
|
+
const Casual$3 = "Zwanglos";
|
|
2814
|
+
const Script$3 = "Schreibschrift";
|
|
2815
|
+
const Reset$4 = "Zurücksetzen";
|
|
2816
|
+
const Done$4 = "Fertig";
|
|
2817
|
+
const Color$3 = "Farbe";
|
|
2818
|
+
const Opacity$3 = "Deckkraft";
|
|
2819
|
+
const vjsLang$3 = {
|
|
2810
2820
|
Play: Play$4,
|
|
2811
2821
|
Pause: Pause$4,
|
|
2812
2822
|
Replay: Replay$4,
|
|
@@ -2904,59 +2914,16 @@ var de$1 = {
|
|
|
2904
2914
|
"Skip backward {1} seconds": "{1} Sekunden zurück"
|
|
2905
2915
|
};
|
|
2906
2916
|
|
|
2907
|
-
|
|
2908
|
-
|
|
2909
|
-
|
|
2910
|
-
|
|
2911
|
-
|
|
2912
|
-
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
|
|
2916
|
-
|
|
2917
|
-
Cyan: Cyan$4,
|
|
2918
|
-
Depressed: Depressed$3,
|
|
2919
|
-
Descriptions: Descriptions$4,
|
|
2920
|
-
Done: Done$4,
|
|
2921
|
-
Duration: Duration$4,
|
|
2922
|
-
Fullscreen: Fullscreen$4,
|
|
2923
|
-
Green: Green$4,
|
|
2924
|
-
LIVE: LIVE$4,
|
|
2925
|
-
Loaded: Loaded$4,
|
|
2926
|
-
Magenta: Magenta$4,
|
|
2927
|
-
Mute: Mute$4,
|
|
2928
|
-
None: None$4,
|
|
2929
|
-
Opacity: Opacity$3,
|
|
2930
|
-
Opaque: Opaque$4,
|
|
2931
|
-
Pause: Pause$4,
|
|
2932
|
-
Play: Play$4,
|
|
2933
|
-
Progress: Progress$4,
|
|
2934
|
-
Raised: Raised$3,
|
|
2935
|
-
Red: Red$4,
|
|
2936
|
-
Replay: Replay$4,
|
|
2937
|
-
Reset: Reset$4,
|
|
2938
|
-
Script: Script$3,
|
|
2939
|
-
Subtitles: Subtitles$4,
|
|
2940
|
-
Text: Text$4,
|
|
2941
|
-
Transparent: Transparent$4,
|
|
2942
|
-
Uniform: Uniform$4,
|
|
2943
|
-
Unmute: Unmute$4,
|
|
2944
|
-
White: White$4,
|
|
2945
|
-
Window: Window$4,
|
|
2946
|
-
Yellow: Yellow$4,
|
|
2947
|
-
default: de$1
|
|
2948
|
-
});
|
|
2949
|
-
|
|
2950
|
-
var AGERATING12$4 = "Aus Gründen des Jugendschutzes steht dieser Inhalt nur zwischen 20:00 und 06:00 Uhr zur Verfügung.";
|
|
2951
|
-
var AGERATING18$4 = "Aus Gründen des Jugendschutzes steht dieser Inhalt nur zwischen 23:00 und 05:00 Uhr zur Verfügung.";
|
|
2952
|
-
var COMMERCIAL$4 = "Die Werbung wurde übersprungen.";
|
|
2953
|
-
var ENDDATE$4 = "Dieser Inhalt ist nicht mehr verfügbar.";
|
|
2954
|
-
var GEOBLOCK$4 = "Dieser Inhalt ist ausserhalb der Schweiz nicht verfügbar.";
|
|
2955
|
-
var JOURNALISTIC$4 = "Dieser Inhalt steht aus publizistischen Gründen vorübergehend nicht zur Verfügung.";
|
|
2956
|
-
var LEGAL$4 = "Dieser Inhalt ist aus rechtlichen Gründen nicht verfügbar.";
|
|
2957
|
-
var STARTDATE$4 = "Dieser Inhalt ist noch nicht verfügbar. Bitte probieren Sie es später noch einmal.";
|
|
2958
|
-
var UNKNOWN$4 = "Dieser Inhalt ist nicht verfügbar.";
|
|
2959
|
-
var de = {
|
|
2917
|
+
const AGERATING12$4 = "Aus Gründen des Jugendschutzes steht dieser Inhalt nur zwischen 20:00 und 06:00 Uhr zur Verfügung.";
|
|
2918
|
+
const AGERATING18$4 = "Aus Gründen des Jugendschutzes steht dieser Inhalt nur zwischen 23:00 und 05:00 Uhr zur Verfügung.";
|
|
2919
|
+
const COMMERCIAL$4 = "Die Werbung wurde übersprungen.";
|
|
2920
|
+
const ENDDATE$4 = "Dieser Inhalt ist nicht mehr verfügbar.";
|
|
2921
|
+
const GEOBLOCK$4 = "Dieser Inhalt ist ausserhalb der Schweiz nicht verfügbar.";
|
|
2922
|
+
const JOURNALISTIC$4 = "Dieser Inhalt steht aus publizistischen Gründen vorübergehend nicht zur Verfügung.";
|
|
2923
|
+
const LEGAL$4 = "Dieser Inhalt ist aus rechtlichen Gründen nicht verfügbar.";
|
|
2924
|
+
const STARTDATE$4 = "Dieser Inhalt ist noch nicht verfügbar. Bitte probieren Sie es später noch einmal.";
|
|
2925
|
+
const UNKNOWN$4 = "Dieser Inhalt ist nicht verfügbar.";
|
|
2926
|
+
const pillarboxLang$4 = {
|
|
2960
2927
|
AGERATING12: AGERATING12$4,
|
|
2961
2928
|
AGERATING18: AGERATING18$4,
|
|
2962
2929
|
COMMERCIAL: COMMERCIAL$4,
|
|
@@ -2968,61 +2935,47 @@ var de = {
|
|
|
2968
2935
|
UNKNOWN: UNKNOWN$4
|
|
2969
2936
|
};
|
|
2970
2937
|
|
|
2971
|
-
var pillarboxLang$4 = /*#__PURE__*/Object.freeze({
|
|
2972
|
-
__proto__: null,
|
|
2973
|
-
AGERATING12: AGERATING12$4,
|
|
2974
|
-
AGERATING18: AGERATING18$4,
|
|
2975
|
-
COMMERCIAL: COMMERCIAL$4,
|
|
2976
|
-
ENDDATE: ENDDATE$4,
|
|
2977
|
-
GEOBLOCK: GEOBLOCK$4,
|
|
2978
|
-
JOURNALISTIC: JOURNALISTIC$4,
|
|
2979
|
-
LEGAL: LEGAL$4,
|
|
2980
|
-
STARTDATE: STARTDATE$4,
|
|
2981
|
-
UNKNOWN: UNKNOWN$4,
|
|
2982
|
-
default: de
|
|
2983
|
-
});
|
|
2984
|
-
|
|
2985
2938
|
pillarbox.addLanguage('de', _objectSpread2(_objectSpread2({}, vjsLang$3), pillarboxLang$4));
|
|
2986
2939
|
|
|
2987
|
-
|
|
2988
|
-
|
|
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
|
-
|
|
2940
|
+
const Play$3 = "Play";
|
|
2941
|
+
const Pause$3 = "Pause";
|
|
2942
|
+
const Replay$3 = "Replay";
|
|
2943
|
+
const Duration$3 = "Duration";
|
|
2944
|
+
const LIVE$3 = "LIVE";
|
|
2945
|
+
const Loaded$3 = "Loaded";
|
|
2946
|
+
const Progress$3 = "Progress";
|
|
2947
|
+
const Fullscreen$3 = "Fullscreen";
|
|
2948
|
+
const Mute$3 = "Mute";
|
|
2949
|
+
const Unmute$3 = "Unmute";
|
|
2950
|
+
const Subtitles$3 = "Subtitles";
|
|
2951
|
+
const Captions$3 = "Captions";
|
|
2952
|
+
const Chapters$3 = "Chapters";
|
|
2953
|
+
const Descriptions$3 = "Descriptions";
|
|
2954
|
+
const Close$3 = "Close";
|
|
2955
|
+
const Text$3 = "Text";
|
|
2956
|
+
const White$3 = "White";
|
|
2957
|
+
const Black$3 = "Black";
|
|
2958
|
+
const Red$3 = "Red";
|
|
2959
|
+
const Green$3 = "Green";
|
|
2960
|
+
const Blue$3 = "Blue";
|
|
2961
|
+
const Yellow$3 = "Yellow";
|
|
2962
|
+
const Magenta$3 = "Magenta";
|
|
2963
|
+
const Cyan$3 = "Cyan";
|
|
2964
|
+
const Background$3 = "Background";
|
|
2965
|
+
const Window$3 = "Window";
|
|
2966
|
+
const Transparent$3 = "Transparent";
|
|
2967
|
+
const Opaque$3 = "Opaque";
|
|
2968
|
+
const None$3 = "None";
|
|
2969
|
+
const Raised$2 = "Raised";
|
|
2970
|
+
const Depressed$2 = "Depressed";
|
|
2971
|
+
const Uniform$3 = "Uniform";
|
|
2972
|
+
const Casual$2 = "Casual";
|
|
2973
|
+
const Script$2 = "Script";
|
|
2974
|
+
const Reset$3 = "Reset";
|
|
2975
|
+
const Done$3 = "Done";
|
|
2976
|
+
const Color$2 = "Color";
|
|
2977
|
+
const Opacity$2 = "Opacity";
|
|
2978
|
+
const vjsLang$2 = {
|
|
3026
2979
|
"Audio Player": "Audio Player",
|
|
3027
2980
|
"Video Player": "Video Player",
|
|
3028
2981
|
Play: Play$3,
|
|
@@ -3120,59 +3073,16 @@ var en$1 = {
|
|
|
3120
3073
|
"Skip forward {1} seconds": "Skip forward {1} seconds"
|
|
3121
3074
|
};
|
|
3122
3075
|
|
|
3123
|
-
|
|
3124
|
-
|
|
3125
|
-
|
|
3126
|
-
|
|
3127
|
-
|
|
3128
|
-
|
|
3129
|
-
|
|
3130
|
-
|
|
3131
|
-
|
|
3132
|
-
|
|
3133
|
-
Cyan: Cyan$3,
|
|
3134
|
-
Depressed: Depressed$2,
|
|
3135
|
-
Descriptions: Descriptions$3,
|
|
3136
|
-
Done: Done$3,
|
|
3137
|
-
Duration: Duration$3,
|
|
3138
|
-
Fullscreen: Fullscreen$3,
|
|
3139
|
-
Green: Green$3,
|
|
3140
|
-
LIVE: LIVE$3,
|
|
3141
|
-
Loaded: Loaded$3,
|
|
3142
|
-
Magenta: Magenta$3,
|
|
3143
|
-
Mute: Mute$3,
|
|
3144
|
-
None: None$3,
|
|
3145
|
-
Opacity: Opacity$2,
|
|
3146
|
-
Opaque: Opaque$3,
|
|
3147
|
-
Pause: Pause$3,
|
|
3148
|
-
Play: Play$3,
|
|
3149
|
-
Progress: Progress$3,
|
|
3150
|
-
Raised: Raised$2,
|
|
3151
|
-
Red: Red$3,
|
|
3152
|
-
Replay: Replay$3,
|
|
3153
|
-
Reset: Reset$3,
|
|
3154
|
-
Script: Script$2,
|
|
3155
|
-
Subtitles: Subtitles$3,
|
|
3156
|
-
Text: Text$3,
|
|
3157
|
-
Transparent: Transparent$3,
|
|
3158
|
-
Uniform: Uniform$3,
|
|
3159
|
-
Unmute: Unmute$3,
|
|
3160
|
-
White: White$3,
|
|
3161
|
-
Window: Window$3,
|
|
3162
|
-
Yellow: Yellow$3,
|
|
3163
|
-
default: en$1
|
|
3164
|
-
});
|
|
3165
|
-
|
|
3166
|
-
var AGERATING12$3 = "To protect children this content is only available between 8PM and 6AM.";
|
|
3167
|
-
var AGERATING18$3 = "To protect children this content is only available between 10PM and 5AM.";
|
|
3168
|
-
var COMMERCIAL$3 = "This commercial content is not available.";
|
|
3169
|
-
var ENDDATE$3 = "This content is not available anymore.";
|
|
3170
|
-
var GEOBLOCK$3 = "This content is not available outside Switzerland.";
|
|
3171
|
-
var JOURNALISTIC$3 = "This content is temporarily unavailable for journalistic reasons.";
|
|
3172
|
-
var LEGAL$3 = "This content is not available due to legal restrictions.";
|
|
3173
|
-
var STARTDATE$3 = "This content is not available yet.";
|
|
3174
|
-
var UNKNOWN$3 = "This content is not available.";
|
|
3175
|
-
var en = {
|
|
3076
|
+
const AGERATING12$3 = "To protect children this content is only available between 8PM and 6AM.";
|
|
3077
|
+
const AGERATING18$3 = "To protect children this content is only available between 10PM and 5AM.";
|
|
3078
|
+
const COMMERCIAL$3 = "This commercial content is not available.";
|
|
3079
|
+
const ENDDATE$3 = "This content is not available anymore.";
|
|
3080
|
+
const GEOBLOCK$3 = "This content is not available outside Switzerland.";
|
|
3081
|
+
const JOURNALISTIC$3 = "This content is temporarily unavailable for journalistic reasons.";
|
|
3082
|
+
const LEGAL$3 = "This content is not available due to legal restrictions.";
|
|
3083
|
+
const STARTDATE$3 = "This content is not available yet.";
|
|
3084
|
+
const UNKNOWN$3 = "This content is not available.";
|
|
3085
|
+
const pillarboxLang$3 = {
|
|
3176
3086
|
AGERATING12: AGERATING12$3,
|
|
3177
3087
|
AGERATING18: AGERATING18$3,
|
|
3178
3088
|
COMMERCIAL: COMMERCIAL$3,
|
|
@@ -3184,61 +3094,47 @@ var en = {
|
|
|
3184
3094
|
UNKNOWN: UNKNOWN$3
|
|
3185
3095
|
};
|
|
3186
3096
|
|
|
3187
|
-
var pillarboxLang$3 = /*#__PURE__*/Object.freeze({
|
|
3188
|
-
__proto__: null,
|
|
3189
|
-
AGERATING12: AGERATING12$3,
|
|
3190
|
-
AGERATING18: AGERATING18$3,
|
|
3191
|
-
COMMERCIAL: COMMERCIAL$3,
|
|
3192
|
-
ENDDATE: ENDDATE$3,
|
|
3193
|
-
GEOBLOCK: GEOBLOCK$3,
|
|
3194
|
-
JOURNALISTIC: JOURNALISTIC$3,
|
|
3195
|
-
LEGAL: LEGAL$3,
|
|
3196
|
-
STARTDATE: STARTDATE$3,
|
|
3197
|
-
UNKNOWN: UNKNOWN$3,
|
|
3198
|
-
default: en
|
|
3199
|
-
});
|
|
3200
|
-
|
|
3201
3097
|
pillarbox.addLanguage('en', _objectSpread2(_objectSpread2({}, vjsLang$2), pillarboxLang$3));
|
|
3202
3098
|
|
|
3203
|
-
|
|
3204
|
-
|
|
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
|
-
|
|
3099
|
+
const Play$2 = "Lecture";
|
|
3100
|
+
const Pause$2 = "Pause";
|
|
3101
|
+
const Replay$2 = "Revoir";
|
|
3102
|
+
const Duration$2 = "Durée";
|
|
3103
|
+
const LIVE$2 = "EN DIRECT";
|
|
3104
|
+
const Loaded$2 = "Chargé";
|
|
3105
|
+
const Progress$2 = "Progression";
|
|
3106
|
+
const Fullscreen$2 = "Plein écran";
|
|
3107
|
+
const Mute$2 = "Mettre en sourdine";
|
|
3108
|
+
const Unmute$2 = "Activer le son";
|
|
3109
|
+
const Subtitles$2 = "Sous-titres";
|
|
3110
|
+
const Captions$2 = "Sous-titres transcrits";
|
|
3111
|
+
const Chapters$2 = "Chapitres";
|
|
3112
|
+
const Descriptions$2 = "Descriptions";
|
|
3113
|
+
const Close$2 = "Fermer";
|
|
3114
|
+
const Text$2 = "Texte";
|
|
3115
|
+
const White$2 = "Blanc";
|
|
3116
|
+
const Black$2 = "Noir";
|
|
3117
|
+
const Red$2 = "Rouge";
|
|
3118
|
+
const Green$2 = "Vert";
|
|
3119
|
+
const Blue$2 = "Bleu";
|
|
3120
|
+
const Yellow$2 = "Jaune";
|
|
3121
|
+
const Magenta$2 = "Magenta";
|
|
3122
|
+
const Cyan$2 = "Cyan";
|
|
3123
|
+
const Background$2 = "Arrière-plan";
|
|
3124
|
+
const Window$2 = "Fenêtre";
|
|
3125
|
+
const Transparent$2 = "Transparent";
|
|
3126
|
+
const Opaque$2 = "Opaque";
|
|
3127
|
+
const None$2 = "Aucun";
|
|
3128
|
+
const Raised$1 = "Élevé";
|
|
3129
|
+
const Depressed$1 = "Enfoncé";
|
|
3130
|
+
const Uniform$2 = "Uniforme";
|
|
3131
|
+
const Casual$1 = "Manuscrite";
|
|
3132
|
+
const Script$1 = "Scripte";
|
|
3133
|
+
const Reset$2 = "Réinitialiser";
|
|
3134
|
+
const Done$2 = "Terminé";
|
|
3135
|
+
const Color$1 = "Couleur";
|
|
3136
|
+
const Opacity$1 = "Opacité";
|
|
3137
|
+
const vjsLang$1 = {
|
|
3242
3138
|
"Audio Player": "Lecteur audio",
|
|
3243
3139
|
"Video Player": "Lecteur vidéo",
|
|
3244
3140
|
Play: Play$2,
|
|
@@ -3335,59 +3231,16 @@ var fr$1 = {
|
|
|
3335
3231
|
"Skip forward {1} seconds": "Avancer de {1} secondes"
|
|
3336
3232
|
};
|
|
3337
3233
|
|
|
3338
|
-
|
|
3339
|
-
|
|
3340
|
-
|
|
3341
|
-
|
|
3342
|
-
|
|
3343
|
-
|
|
3344
|
-
|
|
3345
|
-
|
|
3346
|
-
|
|
3347
|
-
|
|
3348
|
-
Cyan: Cyan$2,
|
|
3349
|
-
Depressed: Depressed$1,
|
|
3350
|
-
Descriptions: Descriptions$2,
|
|
3351
|
-
Done: Done$2,
|
|
3352
|
-
Duration: Duration$2,
|
|
3353
|
-
Fullscreen: Fullscreen$2,
|
|
3354
|
-
Green: Green$2,
|
|
3355
|
-
LIVE: LIVE$2,
|
|
3356
|
-
Loaded: Loaded$2,
|
|
3357
|
-
Magenta: Magenta$2,
|
|
3358
|
-
Mute: Mute$2,
|
|
3359
|
-
None: None$2,
|
|
3360
|
-
Opacity: Opacity$1,
|
|
3361
|
-
Opaque: Opaque$2,
|
|
3362
|
-
Pause: Pause$2,
|
|
3363
|
-
Play: Play$2,
|
|
3364
|
-
Progress: Progress$2,
|
|
3365
|
-
Raised: Raised$1,
|
|
3366
|
-
Red: Red$2,
|
|
3367
|
-
Replay: Replay$2,
|
|
3368
|
-
Reset: Reset$2,
|
|
3369
|
-
Script: Script$1,
|
|
3370
|
-
Subtitles: Subtitles$2,
|
|
3371
|
-
Text: Text$2,
|
|
3372
|
-
Transparent: Transparent$2,
|
|
3373
|
-
Uniform: Uniform$2,
|
|
3374
|
-
Unmute: Unmute$2,
|
|
3375
|
-
White: White$2,
|
|
3376
|
-
Window: Window$2,
|
|
3377
|
-
Yellow: Yellow$2,
|
|
3378
|
-
default: fr$1
|
|
3379
|
-
});
|
|
3380
|
-
|
|
3381
|
-
var AGERATING12$2 = "Pour protéger les enfants, ce contenu est accessible entre 20h et 6h.";
|
|
3382
|
-
var AGERATING18$2 = "Pour protéger les enfants, ce contenu est accessible entre 23h et 5h.";
|
|
3383
|
-
var COMMERCIAL$2 = "Ce contenu n'est actuellement pas disponible.";
|
|
3384
|
-
var ENDDATE$2 = "Ce contenu n'est plus disponible.";
|
|
3385
|
-
var GEOBLOCK$2 = "La RTS ne dispose pas des droits de diffusion en dehors de la Suisse.";
|
|
3386
|
-
var JOURNALISTIC$2 = "Ce contenu est temporairement indisponible pour des raisons éditoriales.";
|
|
3387
|
-
var LEGAL$2 = "Pour des raisons juridiques, ce contenu n'est pas disponible.";
|
|
3388
|
-
var STARTDATE$2 = "Ce contenu n'est pas encore disponible. Veuillez réessayer plus tard.";
|
|
3389
|
-
var UNKNOWN$2 = "Ce contenu n'est actuellement pas disponible.";
|
|
3390
|
-
var fr = {
|
|
3234
|
+
const AGERATING12$2 = "Pour protéger les enfants, ce contenu est accessible entre 20h et 6h.";
|
|
3235
|
+
const AGERATING18$2 = "Pour protéger les enfants, ce contenu est accessible entre 23h et 5h.";
|
|
3236
|
+
const COMMERCIAL$2 = "Ce contenu n'est actuellement pas disponible.";
|
|
3237
|
+
const ENDDATE$2 = "Ce contenu n'est plus disponible.";
|
|
3238
|
+
const GEOBLOCK$2 = "La RTS ne dispose pas des droits de diffusion en dehors de la Suisse.";
|
|
3239
|
+
const JOURNALISTIC$2 = "Ce contenu est temporairement indisponible pour des raisons éditoriales.";
|
|
3240
|
+
const LEGAL$2 = "Pour des raisons juridiques, ce contenu n'est pas disponible.";
|
|
3241
|
+
const STARTDATE$2 = "Ce contenu n'est pas encore disponible. Veuillez réessayer plus tard.";
|
|
3242
|
+
const UNKNOWN$2 = "Ce contenu n'est actuellement pas disponible.";
|
|
3243
|
+
const pillarboxLang$2 = {
|
|
3391
3244
|
AGERATING12: AGERATING12$2,
|
|
3392
3245
|
AGERATING18: AGERATING18$2,
|
|
3393
3246
|
COMMERCIAL: COMMERCIAL$2,
|
|
@@ -3399,57 +3252,43 @@ var fr = {
|
|
|
3399
3252
|
UNKNOWN: UNKNOWN$2
|
|
3400
3253
|
};
|
|
3401
3254
|
|
|
3402
|
-
var pillarboxLang$2 = /*#__PURE__*/Object.freeze({
|
|
3403
|
-
__proto__: null,
|
|
3404
|
-
AGERATING12: AGERATING12$2,
|
|
3405
|
-
AGERATING18: AGERATING18$2,
|
|
3406
|
-
COMMERCIAL: COMMERCIAL$2,
|
|
3407
|
-
ENDDATE: ENDDATE$2,
|
|
3408
|
-
GEOBLOCK: GEOBLOCK$2,
|
|
3409
|
-
JOURNALISTIC: JOURNALISTIC$2,
|
|
3410
|
-
LEGAL: LEGAL$2,
|
|
3411
|
-
STARTDATE: STARTDATE$2,
|
|
3412
|
-
UNKNOWN: UNKNOWN$2,
|
|
3413
|
-
default: fr
|
|
3414
|
-
});
|
|
3415
|
-
|
|
3416
3255
|
pillarbox.addLanguage('fr', _objectSpread2(_objectSpread2({}, vjsLang$1), pillarboxLang$2));
|
|
3417
3256
|
|
|
3418
|
-
|
|
3419
|
-
|
|
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
|
-
|
|
3257
|
+
const Play$1 = "Play";
|
|
3258
|
+
const Pause$1 = "Pausa";
|
|
3259
|
+
const Replay$1 = "Replay";
|
|
3260
|
+
const Duration$1 = "Durata";
|
|
3261
|
+
const LIVE$1 = "LIVE";
|
|
3262
|
+
const Loaded$1 = "Caricato";
|
|
3263
|
+
const Progress$1 = "Stato";
|
|
3264
|
+
const Fullscreen$1 = "Schermo intero";
|
|
3265
|
+
const Mute$1 = "Disattiva l’audio";
|
|
3266
|
+
const Unmute$1 = "Attiva l’audio";
|
|
3267
|
+
const Subtitles$1 = "Sottotitoli";
|
|
3268
|
+
const Captions$1 = "Didascalie";
|
|
3269
|
+
const Chapters$1 = "Capitolo";
|
|
3270
|
+
const Descriptions$1 = "Descrizioni";
|
|
3271
|
+
const Close$1 = "Chiudi";
|
|
3272
|
+
const Text$1 = "Testo";
|
|
3273
|
+
const White$1 = "Bianco";
|
|
3274
|
+
const Black$1 = "Nero";
|
|
3275
|
+
const Red$1 = "Rosso";
|
|
3276
|
+
const Green$1 = "Verde";
|
|
3277
|
+
const Blue$1 = "Blu";
|
|
3278
|
+
const Yellow$1 = "Giallo";
|
|
3279
|
+
const Magenta$1 = "Magenta";
|
|
3280
|
+
const Cyan$1 = "Ciano";
|
|
3281
|
+
const Background$1 = "Sfondo";
|
|
3282
|
+
const Window$1 = "Finestra";
|
|
3283
|
+
const Transparent$1 = "Trasparente";
|
|
3284
|
+
const Opaque$1 = "Opaco";
|
|
3285
|
+
const None$1 = "Nessuno";
|
|
3286
|
+
const Uniform$1 = "Uniforme";
|
|
3287
|
+
const Reset$1 = "Reinizializza";
|
|
3288
|
+
const Done$1 = "Fatto";
|
|
3289
|
+
const Color = "Colore";
|
|
3290
|
+
const Opacity = "Opacità";
|
|
3291
|
+
const vjsLang = {
|
|
3453
3292
|
"Audio Player": "Lettore audio",
|
|
3454
3293
|
"Video Player": "Lettore video",
|
|
3455
3294
|
Play: Play$1,
|
|
@@ -3472,7 +3311,7 @@ var it$1 = {
|
|
|
3472
3311
|
Subtitles: Subtitles$1,
|
|
3473
3312
|
"subtitles off": "Senza sottotitoli",
|
|
3474
3313
|
Captions: Captions$1,
|
|
3475
|
-
"captions off": "Senza
|
|
3314
|
+
"captions off": "Senza didascalie",
|
|
3476
3315
|
Chapters: Chapters$1,
|
|
3477
3316
|
Descriptions: Descriptions$1,
|
|
3478
3317
|
"descriptions off": "Descrizioni disattivate",
|
|
@@ -3490,13 +3329,13 @@ var it$1 = {
|
|
|
3490
3329
|
"Modal Window": "Finestra di dialogo",
|
|
3491
3330
|
"This is a modal window": "Questa è una finestra di dialogo",
|
|
3492
3331
|
"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.",
|
|
3493
|
-
", opens captions settings dialog": ", aprire
|
|
3494
|
-
", opens subtitles settings dialog": ", aprire
|
|
3495
|
-
", opens descriptions settings dialog": ", aprire
|
|
3332
|
+
", opens captions settings dialog": ", aprire le impostazioni delle didascalie",
|
|
3333
|
+
", opens subtitles settings dialog": ", aprire le impostazioni dei sottotitoli",
|
|
3334
|
+
", opens descriptions settings dialog": ", aprire le impostazioni delle descrizioni",
|
|
3496
3335
|
", selected": ", selezionato",
|
|
3497
|
-
"captions settings": "
|
|
3498
|
-
"subtitles settings": "
|
|
3499
|
-
"descriptions settings": "
|
|
3336
|
+
"captions settings": "Impostazioni didascalie",
|
|
3337
|
+
"subtitles settings": "Impostazioni sottotitoli",
|
|
3338
|
+
"descriptions settings": "Impostazioni descrizioni",
|
|
3500
3339
|
Text: Text$1,
|
|
3501
3340
|
White: White$1,
|
|
3502
3341
|
Black: Black$1,
|
|
@@ -3539,55 +3378,16 @@ var it$1 = {
|
|
|
3539
3378
|
"Skip backward {1} seconds": "Indietro {1} secondi"
|
|
3540
3379
|
};
|
|
3541
3380
|
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
Descriptions: Descriptions$1,
|
|
3553
|
-
Done: Done$1,
|
|
3554
|
-
Duration: Duration$1,
|
|
3555
|
-
Fullscreen: Fullscreen$1,
|
|
3556
|
-
Green: Green$1,
|
|
3557
|
-
LIVE: LIVE$1,
|
|
3558
|
-
Loaded: Loaded$1,
|
|
3559
|
-
Magenta: Magenta$1,
|
|
3560
|
-
Mute: Mute$1,
|
|
3561
|
-
None: None$1,
|
|
3562
|
-
Opacity: Opacity,
|
|
3563
|
-
Opaque: Opaque$1,
|
|
3564
|
-
Pause: Pause$1,
|
|
3565
|
-
Play: Play$1,
|
|
3566
|
-
Progress: Progress$1,
|
|
3567
|
-
Red: Red$1,
|
|
3568
|
-
Replay: Replay$1,
|
|
3569
|
-
Reset: Reset$1,
|
|
3570
|
-
Subtitles: Subtitles$1,
|
|
3571
|
-
Text: Text$1,
|
|
3572
|
-
Transparent: Transparent$1,
|
|
3573
|
-
Uniform: Uniform$1,
|
|
3574
|
-
Unmute: Unmute$1,
|
|
3575
|
-
White: White$1,
|
|
3576
|
-
Window: Window$1,
|
|
3577
|
-
Yellow: Yellow$1,
|
|
3578
|
-
default: it$1
|
|
3579
|
-
});
|
|
3580
|
-
|
|
3581
|
-
var AGERATING12$1 = "Per proteggere i bambini, questo media è disponibile solo fra le 20 e le 6.";
|
|
3582
|
-
var AGERATING18$1 = "Per proteggere i bambini, questo media è disponibile solo fra le 23 le 5.";
|
|
3583
|
-
var COMMERCIAL$1 = "Questo contenuto commerciale non è disponibile.";
|
|
3584
|
-
var ENDDATE$1 = "Questo media non è più disponibile.";
|
|
3585
|
-
var GEOBLOCK$1 = "Questo media non è disponibile fuori dalla Svizzera.";
|
|
3586
|
-
var JOURNALISTIC$1 = "Questo contenuto è temporaneamente non disponibile per motivi editoriali.";
|
|
3587
|
-
var LEGAL$1 = "Il contenuto non è fruibile a causa di restrizioni legali.";
|
|
3588
|
-
var STARTDATE$1 = "Il contenuto non è ancora disponibile. Per cortesia prova più tardi.";
|
|
3589
|
-
var UNKNOWN$1 = "Questo media non è disponibile.";
|
|
3590
|
-
var it = {
|
|
3381
|
+
const AGERATING12$1 = "Per proteggere i bambini, questo media è disponibile solo fra le 20 e le 6.";
|
|
3382
|
+
const AGERATING18$1 = "Per proteggere i bambini, questo media è disponibile solo fra le 23 le 5.";
|
|
3383
|
+
const COMMERCIAL$1 = "Questo contenuto commerciale non è disponibile.";
|
|
3384
|
+
const ENDDATE$1 = "Questo media non è più disponibile.";
|
|
3385
|
+
const GEOBLOCK$1 = "Questo media non è disponibile fuori dalla Svizzera.";
|
|
3386
|
+
const JOURNALISTIC$1 = "Questo contenuto è temporaneamente non disponibile per motivi editoriali.";
|
|
3387
|
+
const LEGAL$1 = "Il contenuto non è fruibile a causa di restrizioni legali.";
|
|
3388
|
+
const STARTDATE$1 = "Il contenuto non è ancora disponibile. Per cortesia prova più tardi.";
|
|
3389
|
+
const UNKNOWN$1 = "Questo media non è disponibile.";
|
|
3390
|
+
const pillarboxLang$1 = {
|
|
3591
3391
|
AGERATING12: AGERATING12$1,
|
|
3592
3392
|
AGERATING18: AGERATING18$1,
|
|
3593
3393
|
COMMERCIAL: COMMERCIAL$1,
|
|
@@ -3599,69 +3399,55 @@ var it = {
|
|
|
3599
3399
|
UNKNOWN: UNKNOWN$1
|
|
3600
3400
|
};
|
|
3601
3401
|
|
|
3602
|
-
var pillarboxLang$1 = /*#__PURE__*/Object.freeze({
|
|
3603
|
-
__proto__: null,
|
|
3604
|
-
AGERATING12: AGERATING12$1,
|
|
3605
|
-
AGERATING18: AGERATING18$1,
|
|
3606
|
-
COMMERCIAL: COMMERCIAL$1,
|
|
3607
|
-
ENDDATE: ENDDATE$1,
|
|
3608
|
-
GEOBLOCK: GEOBLOCK$1,
|
|
3609
|
-
JOURNALISTIC: JOURNALISTIC$1,
|
|
3610
|
-
LEGAL: LEGAL$1,
|
|
3611
|
-
STARTDATE: STARTDATE$1,
|
|
3612
|
-
UNKNOWN: UNKNOWN$1,
|
|
3613
|
-
default: it
|
|
3614
|
-
});
|
|
3615
|
-
|
|
3616
3402
|
pillarbox.addLanguage('it', _objectSpread2(_objectSpread2({}, vjsLang), pillarboxLang$1));
|
|
3617
3403
|
|
|
3618
|
-
|
|
3619
|
-
|
|
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
|
-
|
|
3404
|
+
const Play = "Laschar ir";
|
|
3405
|
+
const Pause = "Pausa";
|
|
3406
|
+
const Replay = "Mussar danovamain";
|
|
3407
|
+
const Duration = "Durada";
|
|
3408
|
+
const LIVE = "LIVE";
|
|
3409
|
+
const Loaded = "Chargià";
|
|
3410
|
+
const Progress = "Progress";
|
|
3411
|
+
const Fullscreen = "Entir visur";
|
|
3412
|
+
const Mute = "Senza tun";
|
|
3413
|
+
const Unmute = "Cun tun";
|
|
3414
|
+
const Subtitles = "Suttitels";
|
|
3415
|
+
const Captions = "Suttitels";
|
|
3416
|
+
const Chapters = "Chapitels";
|
|
3417
|
+
const Descriptions = "Descripziuns";
|
|
3418
|
+
const Close = "Serrar";
|
|
3419
|
+
const Text = "Text";
|
|
3420
|
+
const White = "Alv";
|
|
3421
|
+
const Black = "Nair";
|
|
3422
|
+
const Red = "Cotschn";
|
|
3423
|
+
const Green = "Verd";
|
|
3424
|
+
const Blue = "Blau";
|
|
3425
|
+
const Yellow = "Mellen";
|
|
3426
|
+
const Magenta = "Magenta";
|
|
3427
|
+
const Cyan = "Cyan";
|
|
3428
|
+
const Background = "Fund";
|
|
3429
|
+
const Window = "Fanestra";
|
|
3430
|
+
const Transparent = "Transparent";
|
|
3431
|
+
const Opaque = "Betg transparent";
|
|
3432
|
+
const None = "Nagin";
|
|
3433
|
+
const Raised = "Auzà";
|
|
3434
|
+
const Depressed = "Sbassà";
|
|
3435
|
+
const Uniform = "Uniform";
|
|
3436
|
+
const Dropshadow = "Sumbriva";
|
|
3437
|
+
const Casual = "Casual";
|
|
3438
|
+
const Script = "Script";
|
|
3439
|
+
const Reset = "Da nov";
|
|
3440
|
+
const Done = "Fatg";
|
|
3441
|
+
const AGERATING12 = "Per proteger uffants, è quest cuntegn disponibel mo tranter las 20.00 e las 06.00.";
|
|
3442
|
+
const AGERATING18 = "Per proteger uffants, è quest cuntegn disponibel mo tranter las 23.00 e las 05.00.";
|
|
3443
|
+
const COMMERCIAL = "Quest medium commerzial n'è betg disponibel.";
|
|
3444
|
+
const ENDDATE = "Quest cuntegn n'è betg pli disponibel.";
|
|
3445
|
+
const GEOBLOCK = "Quest cuntegn n'è betg disponibel ordaifer la Svizra.";
|
|
3446
|
+
const JOURNALISTIC = "Quest cuntegn na stat ad interim betg a disposiziun per motivs publicistics.";
|
|
3447
|
+
const LEGAL = "Quest cuntegn n'è betg disponibel perquai ch'el è scadì.";
|
|
3448
|
+
const STARTDATE = "Quest cuntegn n'è betg anc disponibel. Empruvai pli tard.";
|
|
3449
|
+
const UNKNOWN = "Quest cuntegn n'è betg disponibel.";
|
|
3450
|
+
const pillarboxLang = {
|
|
3665
3451
|
"Audio Player": "Audio-Player",
|
|
3666
3452
|
"Video Player": "Video-Player",
|
|
3667
3453
|
Play: Play,
|
|
@@ -3755,57 +3541,6 @@ var rm = {
|
|
|
3755
3541
|
UNKNOWN: UNKNOWN
|
|
3756
3542
|
};
|
|
3757
3543
|
|
|
3758
|
-
var pillarboxLang = /*#__PURE__*/Object.freeze({
|
|
3759
|
-
__proto__: null,
|
|
3760
|
-
AGERATING12: AGERATING12,
|
|
3761
|
-
AGERATING18: AGERATING18,
|
|
3762
|
-
Background: Background,
|
|
3763
|
-
Black: Black,
|
|
3764
|
-
Blue: Blue,
|
|
3765
|
-
COMMERCIAL: COMMERCIAL,
|
|
3766
|
-
Captions: Captions,
|
|
3767
|
-
Casual: Casual,
|
|
3768
|
-
Chapters: Chapters,
|
|
3769
|
-
Close: Close,
|
|
3770
|
-
Cyan: Cyan,
|
|
3771
|
-
Depressed: Depressed,
|
|
3772
|
-
Descriptions: Descriptions,
|
|
3773
|
-
Done: Done,
|
|
3774
|
-
Dropshadow: Dropshadow,
|
|
3775
|
-
Duration: Duration,
|
|
3776
|
-
ENDDATE: ENDDATE,
|
|
3777
|
-
Fullscreen: Fullscreen,
|
|
3778
|
-
GEOBLOCK: GEOBLOCK,
|
|
3779
|
-
Green: Green,
|
|
3780
|
-
JOURNALISTIC: JOURNALISTIC,
|
|
3781
|
-
LEGAL: LEGAL,
|
|
3782
|
-
LIVE: LIVE,
|
|
3783
|
-
Loaded: Loaded,
|
|
3784
|
-
Magenta: Magenta,
|
|
3785
|
-
Mute: Mute,
|
|
3786
|
-
None: None,
|
|
3787
|
-
Opaque: Opaque,
|
|
3788
|
-
Pause: Pause,
|
|
3789
|
-
Play: Play,
|
|
3790
|
-
Progress: Progress,
|
|
3791
|
-
Raised: Raised,
|
|
3792
|
-
Red: Red,
|
|
3793
|
-
Replay: Replay,
|
|
3794
|
-
Reset: Reset,
|
|
3795
|
-
STARTDATE: STARTDATE,
|
|
3796
|
-
Script: Script,
|
|
3797
|
-
Subtitles: Subtitles,
|
|
3798
|
-
Text: Text,
|
|
3799
|
-
Transparent: Transparent,
|
|
3800
|
-
UNKNOWN: UNKNOWN,
|
|
3801
|
-
Uniform: Uniform,
|
|
3802
|
-
Unmute: Unmute,
|
|
3803
|
-
White: White,
|
|
3804
|
-
Window: Window,
|
|
3805
|
-
Yellow: Yellow,
|
|
3806
|
-
default: rm
|
|
3807
|
-
});
|
|
3808
|
-
|
|
3809
3544
|
pillarbox.addLanguage('rm', _objectSpread2({}, pillarboxLang));
|
|
3810
3545
|
|
|
3811
3546
|
const _excluded = ["url", "mimeType", "keySystems"],
|
|
@@ -4437,3 +4172,4 @@ pillarbox.options.srgOptions = {
|
|
|
4437
4172
|
};
|
|
4438
4173
|
|
|
4439
4174
|
export { Player, SrgSsr, pillarbox as default };
|
|
4175
|
+
//# sourceMappingURL=pillarbox.es.js.map
|