vidply 1.0.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/LICENSE +22 -0
- package/README.md +461 -0
- package/dist/vidply.css +1717 -0
- package/dist/vidply.esm.js +5558 -0
- package/dist/vidply.esm.js.map +7 -0
- package/dist/vidply.esm.min.js +17 -0
- package/dist/vidply.esm.min.meta.json +336 -0
- package/dist/vidply.js +5575 -0
- package/dist/vidply.js.map +7 -0
- package/dist/vidply.min.css +6 -0
- package/dist/vidply.min.js +17 -0
- package/dist/vidply.min.meta.json +332 -0
- package/package.json +54 -0
- package/src/controls/CaptionManager.js +250 -0
- package/src/controls/ControlBar.js +1870 -0
- package/src/controls/KeyboardManager.js +196 -0
- package/src/controls/SettingsDialog.js +417 -0
- package/src/controls/TranscriptManager.js +728 -0
- package/src/core/Player.js +1108 -0
- package/src/features/PlaylistManager.js +437 -0
- package/src/i18n/i18n.js +66 -0
- package/src/i18n/translations.js +511 -0
- package/src/icons/Icons.js +183 -0
- package/src/index.js +34 -0
- package/src/renderers/HLSRenderer.js +302 -0
- package/src/renderers/HTML5Renderer.js +298 -0
- package/src/renderers/VimeoRenderer.js +257 -0
- package/src/renderers/YouTubeRenderer.js +274 -0
- package/src/styles/vidply.css +1711 -0
- package/src/utils/DOMUtils.js +154 -0
- package/src/utils/EventEmitter.js +53 -0
- package/src/utils/TimeUtils.js +82 -0
|
@@ -0,0 +1,511 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Translation strings for VidPly
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
export const translations = {
|
|
6
|
+
en: {
|
|
7
|
+
player: {
|
|
8
|
+
label: 'Video Player',
|
|
9
|
+
play: 'Play',
|
|
10
|
+
pause: 'Pause',
|
|
11
|
+
stop: 'Stop',
|
|
12
|
+
restart: 'Restart from beginning',
|
|
13
|
+
rewind: 'Rewind',
|
|
14
|
+
forward: 'Forward',
|
|
15
|
+
rewindSeconds: 'Rewind {seconds} seconds',
|
|
16
|
+
forwardSeconds: 'Forward {seconds} seconds',
|
|
17
|
+
previous: 'Previous track',
|
|
18
|
+
next: 'Next track',
|
|
19
|
+
volume: 'Volume',
|
|
20
|
+
mute: 'Mute',
|
|
21
|
+
unmute: 'Unmute',
|
|
22
|
+
fullscreen: 'Fullscreen',
|
|
23
|
+
exitFullscreen: 'Exit Fullscreen',
|
|
24
|
+
captions: 'Captions',
|
|
25
|
+
chapters: 'Chapters',
|
|
26
|
+
quality: 'Quality',
|
|
27
|
+
captionStyling: 'Caption styling',
|
|
28
|
+
transcript: 'Toggle transcript',
|
|
29
|
+
audioDescription: 'Audio description',
|
|
30
|
+
signLanguage: 'Sign language video',
|
|
31
|
+
settings: 'Settings',
|
|
32
|
+
speed: 'Playback Speed',
|
|
33
|
+
pip: 'Picture in Picture',
|
|
34
|
+
currentTime: 'Current time',
|
|
35
|
+
duration: 'Duration',
|
|
36
|
+
progress: 'Progress',
|
|
37
|
+
seekForward: 'Seek forward {seconds} seconds',
|
|
38
|
+
seekBackward: 'Seek backward {seconds} seconds',
|
|
39
|
+
volumeUp: 'Volume up',
|
|
40
|
+
volumeDown: 'Volume down',
|
|
41
|
+
loading: 'Loading...',
|
|
42
|
+
loadingChapters: 'Loading chapters...',
|
|
43
|
+
error: 'Error loading media',
|
|
44
|
+
buffering: 'Buffering...',
|
|
45
|
+
signLanguageVideo: 'Sign Language Video',
|
|
46
|
+
noChapters: 'No chapters available',
|
|
47
|
+
noCaptions: 'No captions available',
|
|
48
|
+
auto: 'Auto',
|
|
49
|
+
autoQuality: 'Auto (no quality selection available)',
|
|
50
|
+
noQuality: 'Quality selection not available'
|
|
51
|
+
},
|
|
52
|
+
captions: {
|
|
53
|
+
off: 'Off',
|
|
54
|
+
select: 'Select captions',
|
|
55
|
+
fontSize: 'Font Size',
|
|
56
|
+
fontFamily: 'Font Family',
|
|
57
|
+
color: 'Text Color',
|
|
58
|
+
backgroundColor: 'Background Color',
|
|
59
|
+
opacity: 'Opacity'
|
|
60
|
+
},
|
|
61
|
+
fontSizes: {
|
|
62
|
+
small: 'Small',
|
|
63
|
+
medium: 'Medium',
|
|
64
|
+
large: 'Large',
|
|
65
|
+
xlarge: 'X-Large'
|
|
66
|
+
},
|
|
67
|
+
fontFamilies: {
|
|
68
|
+
sansSerif: 'Sans-serif',
|
|
69
|
+
serif: 'Serif',
|
|
70
|
+
monospace: 'Monospace'
|
|
71
|
+
},
|
|
72
|
+
styleLabels: {
|
|
73
|
+
textColor: 'Text Color',
|
|
74
|
+
background: 'Background',
|
|
75
|
+
font: 'Font',
|
|
76
|
+
fontSize: 'Font Size',
|
|
77
|
+
opacity: 'Opacity'
|
|
78
|
+
},
|
|
79
|
+
audioDescription: {
|
|
80
|
+
enable: 'Enable audio description',
|
|
81
|
+
disable: 'Disable audio description'
|
|
82
|
+
},
|
|
83
|
+
signLanguage: {
|
|
84
|
+
show: 'Show sign language video',
|
|
85
|
+
hide: 'Hide sign language video'
|
|
86
|
+
},
|
|
87
|
+
transcript: {
|
|
88
|
+
title: 'Transcript',
|
|
89
|
+
close: 'Close transcript',
|
|
90
|
+
loading: 'Loading transcript...',
|
|
91
|
+
noTranscript: 'No transcript available for this video.'
|
|
92
|
+
},
|
|
93
|
+
settings: {
|
|
94
|
+
title: 'Settings',
|
|
95
|
+
quality: 'Quality',
|
|
96
|
+
speed: 'Speed',
|
|
97
|
+
captions: 'Captions',
|
|
98
|
+
language: 'Language',
|
|
99
|
+
reset: 'Reset to defaults',
|
|
100
|
+
close: 'Close'
|
|
101
|
+
},
|
|
102
|
+
speeds: {
|
|
103
|
+
normal: 'Normal'
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
|
|
107
|
+
de: {
|
|
108
|
+
player: {
|
|
109
|
+
label: 'Videoplayer',
|
|
110
|
+
play: 'Abspielen',
|
|
111
|
+
pause: 'Pause',
|
|
112
|
+
stop: 'Stopp',
|
|
113
|
+
restart: 'Von vorne beginnen',
|
|
114
|
+
rewind: 'Zurückspulen',
|
|
115
|
+
forward: 'Vorspulen',
|
|
116
|
+
rewindSeconds: '{seconds} Sekunden zurückspulen',
|
|
117
|
+
forwardSeconds: '{seconds} Sekunden vorspulen',
|
|
118
|
+
previous: 'Vorheriger Titel',
|
|
119
|
+
next: 'Nächster Titel',
|
|
120
|
+
volume: 'Lautstärke',
|
|
121
|
+
mute: 'Stumm',
|
|
122
|
+
unmute: 'Ton ein',
|
|
123
|
+
fullscreen: 'Vollbild',
|
|
124
|
+
exitFullscreen: 'Vollbild beenden',
|
|
125
|
+
captions: 'Untertitel',
|
|
126
|
+
chapters: 'Kapitel',
|
|
127
|
+
quality: 'Qualität',
|
|
128
|
+
captionStyling: 'Untertitel-Stil',
|
|
129
|
+
transcript: 'Transkript umschalten',
|
|
130
|
+
audioDescription: 'Audiodeskription',
|
|
131
|
+
signLanguage: 'Gebärdensprache-Video',
|
|
132
|
+
settings: 'Einstellungen',
|
|
133
|
+
speed: 'Wiedergabegeschwindigkeit',
|
|
134
|
+
pip: 'Bild-in-Bild',
|
|
135
|
+
currentTime: 'Aktuelle Zeit',
|
|
136
|
+
duration: 'Dauer',
|
|
137
|
+
progress: 'Fortschritt',
|
|
138
|
+
seekForward: '{seconds} Sekunden vorspulen',
|
|
139
|
+
seekBackward: '{seconds} Sekunden zurückspulen',
|
|
140
|
+
volumeUp: 'Lauter',
|
|
141
|
+
volumeDown: 'Leiser',
|
|
142
|
+
loading: 'Lädt...',
|
|
143
|
+
loadingChapters: 'Kapitel werden geladen...',
|
|
144
|
+
error: 'Fehler beim Laden',
|
|
145
|
+
buffering: 'Puffern...',
|
|
146
|
+
signLanguageVideo: 'Gebärdensprache-Video',
|
|
147
|
+
noChapters: 'Keine Kapitel verfügbar',
|
|
148
|
+
noCaptions: 'Keine Untertitel verfügbar',
|
|
149
|
+
auto: 'Automatisch',
|
|
150
|
+
autoQuality: 'Automatisch (keine Qualitätsauswahl verfügbar)',
|
|
151
|
+
noQuality: 'Qualitätsauswahl nicht verfügbar'
|
|
152
|
+
},
|
|
153
|
+
captions: {
|
|
154
|
+
off: 'Aus',
|
|
155
|
+
select: 'Untertitel auswählen',
|
|
156
|
+
fontSize: 'Schriftgröße',
|
|
157
|
+
fontFamily: 'Schriftart',
|
|
158
|
+
color: 'Textfarbe',
|
|
159
|
+
backgroundColor: 'Hintergrundfarbe',
|
|
160
|
+
opacity: 'Deckkraft'
|
|
161
|
+
},
|
|
162
|
+
fontSizes: {
|
|
163
|
+
small: 'Klein',
|
|
164
|
+
medium: 'Mittel',
|
|
165
|
+
large: 'Groß',
|
|
166
|
+
xlarge: 'Sehr groß'
|
|
167
|
+
},
|
|
168
|
+
fontFamilies: {
|
|
169
|
+
sansSerif: 'Sans-serif',
|
|
170
|
+
serif: 'Serif',
|
|
171
|
+
monospace: 'Monospace'
|
|
172
|
+
},
|
|
173
|
+
styleLabels: {
|
|
174
|
+
textColor: 'Textfarbe',
|
|
175
|
+
background: 'Hintergrund',
|
|
176
|
+
font: 'Schrift',
|
|
177
|
+
fontSize: 'Schriftgröße',
|
|
178
|
+
opacity: 'Deckkraft'
|
|
179
|
+
},
|
|
180
|
+
audioDescription: {
|
|
181
|
+
enable: 'Audiodeskription aktivieren',
|
|
182
|
+
disable: 'Audiodeskription deaktivieren'
|
|
183
|
+
},
|
|
184
|
+
signLanguage: {
|
|
185
|
+
show: 'Gebärdensprache-Video anzeigen',
|
|
186
|
+
hide: 'Gebärdensprache-Video ausblenden'
|
|
187
|
+
},
|
|
188
|
+
transcript: {
|
|
189
|
+
title: 'Transkript',
|
|
190
|
+
close: 'Transkript schließen',
|
|
191
|
+
loading: 'Transkript wird geladen...',
|
|
192
|
+
noTranscript: 'Kein Transkript für dieses Video verfügbar.'
|
|
193
|
+
},
|
|
194
|
+
settings: {
|
|
195
|
+
title: 'Einstellungen',
|
|
196
|
+
quality: 'Qualität',
|
|
197
|
+
speed: 'Geschwindigkeit',
|
|
198
|
+
captions: 'Untertitel',
|
|
199
|
+
language: 'Sprache',
|
|
200
|
+
reset: 'Zurücksetzen',
|
|
201
|
+
close: 'Schließen'
|
|
202
|
+
},
|
|
203
|
+
speeds: {
|
|
204
|
+
normal: 'Normal'
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
|
|
208
|
+
es: {
|
|
209
|
+
player: {
|
|
210
|
+
label: 'Reproductor de video',
|
|
211
|
+
play: 'Reproducir',
|
|
212
|
+
pause: 'Pausa',
|
|
213
|
+
stop: 'Detener',
|
|
214
|
+
restart: 'Reiniciar desde el principio',
|
|
215
|
+
rewind: 'Retroceder',
|
|
216
|
+
forward: 'Avanzar',
|
|
217
|
+
rewindSeconds: 'Retroceder {seconds} segundos',
|
|
218
|
+
forwardSeconds: 'Avanzar {seconds} segundos',
|
|
219
|
+
previous: 'Pista anterior',
|
|
220
|
+
next: 'Siguiente pista',
|
|
221
|
+
volume: 'Volumen',
|
|
222
|
+
mute: 'Silenciar',
|
|
223
|
+
unmute: 'Activar sonido',
|
|
224
|
+
fullscreen: 'Pantalla completa',
|
|
225
|
+
exitFullscreen: 'Salir de pantalla completa',
|
|
226
|
+
captions: 'Subtítulos',
|
|
227
|
+
chapters: 'Capítulos',
|
|
228
|
+
quality: 'Calidad',
|
|
229
|
+
captionStyling: 'Estilo de subtítulos',
|
|
230
|
+
transcript: 'Alternar transcripción',
|
|
231
|
+
audioDescription: 'Audiodescripción',
|
|
232
|
+
signLanguage: 'Video en lengua de señas',
|
|
233
|
+
settings: 'Configuración',
|
|
234
|
+
speed: 'Velocidad de reproducción',
|
|
235
|
+
pip: 'Imagen en imagen',
|
|
236
|
+
currentTime: 'Tiempo actual',
|
|
237
|
+
duration: 'Duración',
|
|
238
|
+
progress: 'Progreso',
|
|
239
|
+
seekForward: 'Avanzar {seconds} segundos',
|
|
240
|
+
seekBackward: 'Retroceder {seconds} segundos',
|
|
241
|
+
volumeUp: 'Subir volumen',
|
|
242
|
+
volumeDown: 'Bajar volumen',
|
|
243
|
+
loading: 'Cargando...',
|
|
244
|
+
loadingChapters: 'Cargando capítulos...',
|
|
245
|
+
error: 'Error al cargar',
|
|
246
|
+
buffering: 'Almacenando en búfer...',
|
|
247
|
+
signLanguageVideo: 'Video en Lengua de Señas',
|
|
248
|
+
noChapters: 'No hay capítulos disponibles',
|
|
249
|
+
noCaptions: 'No hay subtítulos disponibles',
|
|
250
|
+
auto: 'Automático',
|
|
251
|
+
autoQuality: 'Automático (selección de calidad no disponible)',
|
|
252
|
+
noQuality: 'Selección de calidad no disponible'
|
|
253
|
+
},
|
|
254
|
+
captions: {
|
|
255
|
+
off: 'Desactivado',
|
|
256
|
+
select: 'Seleccionar subtítulos',
|
|
257
|
+
fontSize: 'Tamaño de fuente',
|
|
258
|
+
fontFamily: 'Familia de fuente',
|
|
259
|
+
color: 'Color de texto',
|
|
260
|
+
backgroundColor: 'Color de fondo',
|
|
261
|
+
opacity: 'Opacidad'
|
|
262
|
+
},
|
|
263
|
+
fontSizes: {
|
|
264
|
+
small: 'Pequeño',
|
|
265
|
+
medium: 'Mediano',
|
|
266
|
+
large: 'Grande',
|
|
267
|
+
xlarge: 'Muy grande'
|
|
268
|
+
},
|
|
269
|
+
fontFamilies: {
|
|
270
|
+
sansSerif: 'Sans-serif',
|
|
271
|
+
serif: 'Serif',
|
|
272
|
+
monospace: 'Monospace'
|
|
273
|
+
},
|
|
274
|
+
styleLabels: {
|
|
275
|
+
textColor: 'Color de texto',
|
|
276
|
+
background: 'Fondo',
|
|
277
|
+
font: 'Fuente',
|
|
278
|
+
fontSize: 'Tamaño de fuente',
|
|
279
|
+
opacity: 'Opacidad'
|
|
280
|
+
},
|
|
281
|
+
audioDescription: {
|
|
282
|
+
enable: 'Activar audiodescripción',
|
|
283
|
+
disable: 'Desactivar audiodescripción'
|
|
284
|
+
},
|
|
285
|
+
signLanguage: {
|
|
286
|
+
show: 'Mostrar video en lengua de señas',
|
|
287
|
+
hide: 'Ocultar video en lengua de señas'
|
|
288
|
+
},
|
|
289
|
+
transcript: {
|
|
290
|
+
title: 'Transcripción',
|
|
291
|
+
close: 'Cerrar transcripción',
|
|
292
|
+
loading: 'Cargando transcripción...',
|
|
293
|
+
noTranscript: 'No hay transcripción disponible para este video.'
|
|
294
|
+
},
|
|
295
|
+
settings: {
|
|
296
|
+
title: 'Configuración',
|
|
297
|
+
quality: 'Calidad',
|
|
298
|
+
speed: 'Velocidad',
|
|
299
|
+
captions: 'Subtítulos',
|
|
300
|
+
language: 'Idioma',
|
|
301
|
+
reset: 'Restablecer',
|
|
302
|
+
close: 'Cerrar'
|
|
303
|
+
},
|
|
304
|
+
speeds: {
|
|
305
|
+
normal: 'Normal'
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
|
|
309
|
+
fr: {
|
|
310
|
+
player: {
|
|
311
|
+
label: 'Lecteur vidéo',
|
|
312
|
+
play: 'Lecture',
|
|
313
|
+
pause: 'Pause',
|
|
314
|
+
stop: 'Arrêt',
|
|
315
|
+
restart: 'Redémarrer du début',
|
|
316
|
+
rewind: 'Reculer',
|
|
317
|
+
forward: 'Avancer',
|
|
318
|
+
rewindSeconds: 'Reculer de {seconds} secondes',
|
|
319
|
+
forwardSeconds: 'Avancer de {seconds} secondes',
|
|
320
|
+
previous: 'Piste précédente',
|
|
321
|
+
next: 'Piste suivante',
|
|
322
|
+
volume: 'Volume',
|
|
323
|
+
mute: 'Muet',
|
|
324
|
+
unmute: 'Activer le son',
|
|
325
|
+
fullscreen: 'Plein écran',
|
|
326
|
+
exitFullscreen: 'Quitter le plein écran',
|
|
327
|
+
captions: 'Sous-titres',
|
|
328
|
+
chapters: 'Chapitres',
|
|
329
|
+
quality: 'Qualité',
|
|
330
|
+
captionStyling: 'Style des sous-titres',
|
|
331
|
+
transcript: 'Activer/désactiver la transcription',
|
|
332
|
+
audioDescription: 'Audiodescription',
|
|
333
|
+
signLanguage: 'Vidéo en langue des signes',
|
|
334
|
+
settings: 'Paramètres',
|
|
335
|
+
speed: 'Vitesse de lecture',
|
|
336
|
+
pip: 'Image dans l\'image',
|
|
337
|
+
currentTime: 'Temps actuel',
|
|
338
|
+
duration: 'Durée',
|
|
339
|
+
progress: 'Progression',
|
|
340
|
+
seekForward: 'Avancer de {seconds} secondes',
|
|
341
|
+
seekBackward: 'Reculer de {seconds} secondes',
|
|
342
|
+
volumeUp: 'Augmenter le volume',
|
|
343
|
+
volumeDown: 'Diminuer le volume',
|
|
344
|
+
loading: 'Chargement...',
|
|
345
|
+
loadingChapters: 'Chargement des chapitres...',
|
|
346
|
+
error: 'Erreur de chargement',
|
|
347
|
+
buffering: 'Mise en mémoire tampon...',
|
|
348
|
+
signLanguageVideo: 'Vidéo en Langue des Signes',
|
|
349
|
+
noChapters: 'Aucun chapitre disponible',
|
|
350
|
+
noCaptions: 'Aucun sous-titre disponible',
|
|
351
|
+
auto: 'Automatique',
|
|
352
|
+
autoQuality: 'Automatique (sélection de qualité non disponible)',
|
|
353
|
+
noQuality: 'Sélection de qualité non disponible'
|
|
354
|
+
},
|
|
355
|
+
captions: {
|
|
356
|
+
off: 'Désactivé',
|
|
357
|
+
select: 'Sélectionner les sous-titres',
|
|
358
|
+
fontSize: 'Taille de police',
|
|
359
|
+
fontFamily: 'Police',
|
|
360
|
+
color: 'Couleur du texte',
|
|
361
|
+
backgroundColor: 'Couleur de fond',
|
|
362
|
+
opacity: 'Opacité'
|
|
363
|
+
},
|
|
364
|
+
fontSizes: {
|
|
365
|
+
small: 'Petit',
|
|
366
|
+
medium: 'Moyen',
|
|
367
|
+
large: 'Grand',
|
|
368
|
+
xlarge: 'Très grand'
|
|
369
|
+
},
|
|
370
|
+
fontFamilies: {
|
|
371
|
+
sansSerif: 'Sans-serif',
|
|
372
|
+
serif: 'Serif',
|
|
373
|
+
monospace: 'Monospace'
|
|
374
|
+
},
|
|
375
|
+
styleLabels: {
|
|
376
|
+
textColor: 'Couleur du texte',
|
|
377
|
+
background: 'Arrière-plan',
|
|
378
|
+
font: 'Police',
|
|
379
|
+
fontSize: 'Taille de police',
|
|
380
|
+
opacity: 'Opacité'
|
|
381
|
+
},
|
|
382
|
+
audioDescription: {
|
|
383
|
+
enable: 'Activer l\'audiodescription',
|
|
384
|
+
disable: 'Désactiver l\'audiodescription'
|
|
385
|
+
},
|
|
386
|
+
signLanguage: {
|
|
387
|
+
show: 'Afficher la vidéo en langue des signes',
|
|
388
|
+
hide: 'Masquer la vidéo en langue des signes'
|
|
389
|
+
},
|
|
390
|
+
transcript: {
|
|
391
|
+
title: 'Transcription',
|
|
392
|
+
close: 'Fermer la transcription',
|
|
393
|
+
loading: 'Chargement de la transcription...',
|
|
394
|
+
noTranscript: 'Aucune transcription disponible pour cette vidéo.'
|
|
395
|
+
},
|
|
396
|
+
settings: {
|
|
397
|
+
title: 'Paramètres',
|
|
398
|
+
quality: 'Qualité',
|
|
399
|
+
speed: 'Vitesse',
|
|
400
|
+
captions: 'Sous-titres',
|
|
401
|
+
language: 'Langue',
|
|
402
|
+
reset: 'Réinitialiser',
|
|
403
|
+
close: 'Fermer'
|
|
404
|
+
},
|
|
405
|
+
speeds: {
|
|
406
|
+
normal: 'Normal'
|
|
407
|
+
}
|
|
408
|
+
},
|
|
409
|
+
|
|
410
|
+
ja: {
|
|
411
|
+
player: {
|
|
412
|
+
label: 'ビデオプレーヤー',
|
|
413
|
+
play: '再生',
|
|
414
|
+
pause: '一時停止',
|
|
415
|
+
stop: '停止',
|
|
416
|
+
restart: '最初から再生',
|
|
417
|
+
rewind: '巻き戻し',
|
|
418
|
+
forward: '早送り',
|
|
419
|
+
rewindSeconds: '{seconds}秒戻す',
|
|
420
|
+
forwardSeconds: '{seconds}秒進める',
|
|
421
|
+
previous: '前のトラック',
|
|
422
|
+
next: '次のトラック',
|
|
423
|
+
volume: '音量',
|
|
424
|
+
mute: 'ミュート',
|
|
425
|
+
unmute: 'ミュート解除',
|
|
426
|
+
fullscreen: '全画面表示',
|
|
427
|
+
exitFullscreen: '全画面表示を終了',
|
|
428
|
+
captions: '字幕',
|
|
429
|
+
chapters: 'チャプター',
|
|
430
|
+
quality: '画質',
|
|
431
|
+
captionStyling: '字幕スタイル',
|
|
432
|
+
transcript: '文字起こし切り替え',
|
|
433
|
+
audioDescription: '音声解説',
|
|
434
|
+
signLanguage: '手話動画',
|
|
435
|
+
settings: '設定',
|
|
436
|
+
speed: '再生速度',
|
|
437
|
+
pip: 'ピクチャーインピクチャー',
|
|
438
|
+
currentTime: '現在の時間',
|
|
439
|
+
duration: '再生時間',
|
|
440
|
+
progress: '進行状況',
|
|
441
|
+
seekForward: '{seconds}秒進める',
|
|
442
|
+
seekBackward: '{seconds}秒戻す',
|
|
443
|
+
volumeUp: '音量を上げる',
|
|
444
|
+
volumeDown: '音量を下げる',
|
|
445
|
+
loading: '読み込み中...',
|
|
446
|
+
loadingChapters: 'チャプター読み込み中...',
|
|
447
|
+
error: '読み込みエラー',
|
|
448
|
+
buffering: 'バッファリング中...',
|
|
449
|
+
signLanguageVideo: '手話動画',
|
|
450
|
+
noChapters: 'チャプターがありません',
|
|
451
|
+
noCaptions: '字幕がありません',
|
|
452
|
+
auto: '自動',
|
|
453
|
+
autoQuality: '自動(画質選択不可)',
|
|
454
|
+
noQuality: '画質選択不可'
|
|
455
|
+
},
|
|
456
|
+
captions: {
|
|
457
|
+
off: 'オフ',
|
|
458
|
+
select: '字幕を選択',
|
|
459
|
+
fontSize: 'フォントサイズ',
|
|
460
|
+
fontFamily: 'フォント',
|
|
461
|
+
color: 'テキストの色',
|
|
462
|
+
backgroundColor: '背景色',
|
|
463
|
+
opacity: '不透明度'
|
|
464
|
+
},
|
|
465
|
+
fontSizes: {
|
|
466
|
+
small: '小',
|
|
467
|
+
medium: '中',
|
|
468
|
+
large: '大',
|
|
469
|
+
xlarge: '特大'
|
|
470
|
+
},
|
|
471
|
+
fontFamilies: {
|
|
472
|
+
sansSerif: 'サンセリフ',
|
|
473
|
+
serif: 'セリフ',
|
|
474
|
+
monospace: '等幅'
|
|
475
|
+
},
|
|
476
|
+
styleLabels: {
|
|
477
|
+
textColor: 'テキストの色',
|
|
478
|
+
background: '背景',
|
|
479
|
+
font: 'フォント',
|
|
480
|
+
fontSize: 'フォントサイズ',
|
|
481
|
+
opacity: '不透明度'
|
|
482
|
+
},
|
|
483
|
+
audioDescription: {
|
|
484
|
+
enable: '音声解説を有効にする',
|
|
485
|
+
disable: '音声解説を無効にする'
|
|
486
|
+
},
|
|
487
|
+
signLanguage: {
|
|
488
|
+
show: '手話動画を表示',
|
|
489
|
+
hide: '手話動画を非表示'
|
|
490
|
+
},
|
|
491
|
+
transcript: {
|
|
492
|
+
title: '文字起こし',
|
|
493
|
+
close: '文字起こしを閉じる',
|
|
494
|
+
loading: '文字起こしを読み込み中...',
|
|
495
|
+
noTranscript: 'このビデオの文字起こしはありません。'
|
|
496
|
+
},
|
|
497
|
+
settings: {
|
|
498
|
+
title: '設定',
|
|
499
|
+
quality: '画質',
|
|
500
|
+
speed: '速度',
|
|
501
|
+
captions: '字幕',
|
|
502
|
+
language: '言語',
|
|
503
|
+
reset: 'リセット',
|
|
504
|
+
close: '閉じる'
|
|
505
|
+
},
|
|
506
|
+
speeds: {
|
|
507
|
+
normal: '通常'
|
|
508
|
+
}
|
|
509
|
+
}
|
|
510
|
+
};
|
|
511
|
+
|