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