@playkit-js/playkit-js-ui 0.83.1 → 0.83.2-canary.0-e2f0ab8
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/playkit-ui.js +1 -1
- package/dist/playkit-ui.js.map +1 -1
- package/package.json +1 -1
- package/src/components/cvaa-overlay/main-captions_window.tsx +37 -6
- package/src/components/cvaa-overlay/sample-captions-style-button.tsx +1 -0
- package/src/components/smart-container/smart-container.tsx +1 -1
- package/translations/ca_es.i18n.json +9 -1
- package/translations/de.i18n.json +9 -1
- package/translations/es.i18n.json +9 -1
- package/translations/fi.i18n.json +9 -1
- package/translations/fr.i18n.json +9 -1
- package/translations/fr_ca.i18n.json +9 -1
- package/translations/it.i18n.json +9 -1
- package/translations/ja.i18n.json +9 -1
- package/translations/ko.i18n.json +9 -1
- package/translations/nl.i18n.json +9 -1
- package/translations/pt_br.i18n.json +9 -1
- package/translations/ru.i18n.json +9 -1
- package/translations/zh_cn.i18n.json +9 -1
- package/translations/zh_tw.i18n.json +9 -1
package/package.json
CHANGED
|
@@ -1,23 +1,39 @@
|
|
|
1
1
|
import {Component, VNode} from 'preact';
|
|
2
2
|
import style from '../../styles/style.scss';
|
|
3
|
-
import {Text} from 'preact-i18n';
|
|
3
|
+
import {Text, withText} from 'preact-i18n';
|
|
4
4
|
import {Icon, IconType} from '../icon';
|
|
5
5
|
import {SampleCaptionsStyleButton} from './sample-captions-style-button';
|
|
6
6
|
import {h} from 'preact';
|
|
7
7
|
import {withPlayer} from '../player';
|
|
8
8
|
import { KeyCode } from '../../utils';
|
|
9
9
|
|
|
10
|
+
const translates = (props: any) => ({
|
|
11
|
+
title: <Text id={'cvaa.title'} />,
|
|
12
|
+
sampleHighContrast: <Text id={'cvaa.sample_high_contrast'} />,
|
|
13
|
+
sampleMinimalist: <Text id={'cvaa.sample_minimalist'} />,
|
|
14
|
+
sampleClassicTv: <Text id={'cvaa.sample_classic_tv'} />,
|
|
15
|
+
sampleEasyReading: <Text id={'cvaa.sample_easy_reading'} />,
|
|
16
|
+
sampleEarlyReaders: <Text id={'cvaa.sample_early_readers'} />,
|
|
17
|
+
sampleNightMode: <Text id={'cvaa.sample_night_mode'} />,
|
|
18
|
+
sampleCustom: <Text id={'cvaa.sample_custom'} />,
|
|
19
|
+
setCustomCaption: <Text id={'cvaa.set_custom_caption'} />,
|
|
20
|
+
captionPreview: <Text id={'cvaa.caption_preview'} />
|
|
21
|
+
});
|
|
22
|
+
|
|
10
23
|
/**
|
|
11
24
|
* MainWindow component
|
|
12
25
|
* @class MainCaptionsWindow
|
|
13
26
|
* @extends {Component}
|
|
14
27
|
*/
|
|
15
28
|
@withPlayer
|
|
29
|
+
@withText(translates)
|
|
16
30
|
class MainCaptionsWindow extends Component<any, any> {
|
|
17
31
|
presets: {
|
|
18
32
|
key: string;
|
|
19
33
|
className: string;
|
|
20
34
|
textId: string;
|
|
35
|
+
label: string;
|
|
36
|
+
ariaLabel: string;
|
|
21
37
|
source: string;
|
|
22
38
|
style: any;
|
|
23
39
|
}[] = [];
|
|
@@ -37,6 +53,8 @@ class MainCaptionsWindow extends Component<any, any> {
|
|
|
37
53
|
{
|
|
38
54
|
key: "minimalist",
|
|
39
55
|
className: style.minimalist,
|
|
56
|
+
label: "Minimalist",
|
|
57
|
+
ariaLabel: this.props.sampleMinimalist,
|
|
40
58
|
textId: "cvaa.sample_minimalist",
|
|
41
59
|
source: "Advanced_captions_preset_minimalist",
|
|
42
60
|
style: player.TextStyle.fromJson({
|
|
@@ -52,6 +70,8 @@ class MainCaptionsWindow extends Component<any, any> {
|
|
|
52
70
|
{
|
|
53
71
|
key: "highContrast",
|
|
54
72
|
className: style.highContrast,
|
|
73
|
+
label: "High Contrast",
|
|
74
|
+
ariaLabel: this.props.sampleHighContrast,
|
|
55
75
|
textId: "cvaa.sample_high_contrast",
|
|
56
76
|
source: "Advanced_captions_preset_high_contrast",
|
|
57
77
|
style: player.TextStyle.fromJson({
|
|
@@ -67,6 +87,8 @@ class MainCaptionsWindow extends Component<any, any> {
|
|
|
67
87
|
{
|
|
68
88
|
key: "classicTv",
|
|
69
89
|
className: style.classicTv,
|
|
90
|
+
label: "Classic",
|
|
91
|
+
ariaLabel: this.props.sampleClassicTv,
|
|
70
92
|
textId: "cvaa.sample_classic_tv",
|
|
71
93
|
source: "Advanced_captions_preset_classic_tv_style",
|
|
72
94
|
style: player.TextStyle.fromJson({
|
|
@@ -82,6 +104,8 @@ class MainCaptionsWindow extends Component<any, any> {
|
|
|
82
104
|
{
|
|
83
105
|
key: "easyReading",
|
|
84
106
|
className: style.easyReading,
|
|
107
|
+
label: "Easy Reading",
|
|
108
|
+
ariaLabel: this.props.sampleEasyReading,
|
|
85
109
|
textId: "cvaa.sample_easy_reading",
|
|
86
110
|
source: "Advanced_captions_preset_easy_reading",
|
|
87
111
|
style: player.TextStyle.fromJson({
|
|
@@ -97,6 +121,8 @@ class MainCaptionsWindow extends Component<any, any> {
|
|
|
97
121
|
{
|
|
98
122
|
key: "earlyReaders",
|
|
99
123
|
className: style.earlyReaders,
|
|
124
|
+
label: "Early Readers",
|
|
125
|
+
ariaLabel: this.props.sampleEarlyReaders,
|
|
100
126
|
textId: "cvaa.sample_early_readers",
|
|
101
127
|
source: "Advanced_captions_preset_early_readers",
|
|
102
128
|
style: player.TextStyle.fromJson({
|
|
@@ -112,6 +138,8 @@ class MainCaptionsWindow extends Component<any, any> {
|
|
|
112
138
|
{
|
|
113
139
|
key: "nightMode",
|
|
114
140
|
className: style.nightMode,
|
|
141
|
+
label: "Night Mode",
|
|
142
|
+
ariaLabel: this.props.sampleNightMode,
|
|
115
143
|
textId: "cvaa.sample_night_mode",
|
|
116
144
|
source: "Advanced_captions_preset_night_mode",
|
|
117
145
|
style: player.TextStyle.fromJson({
|
|
@@ -263,7 +291,7 @@ class MainCaptionsWindow extends Component<any, any> {
|
|
|
263
291
|
return (
|
|
264
292
|
<div className={[style.overlayScreen, style.active].join(' ')}>
|
|
265
293
|
<h2 className={style.title} id={this.props.captionsTitleId}>
|
|
266
|
-
|
|
294
|
+
{this.props.title}
|
|
267
295
|
</h2>
|
|
268
296
|
<div role="radiogroup" aria-labelledby={this.props.captionsTitleId}>
|
|
269
297
|
{this.presets.map((preset, index) => (
|
|
@@ -278,8 +306,9 @@ class MainCaptionsWindow extends Component<any, any> {
|
|
|
278
306
|
tabIndex={index === focusIndex ? 0 : -1}
|
|
279
307
|
onKeyDown={(e: KeyboardEvent) => this.onPresetsKeyDown(e, index)}
|
|
280
308
|
setRef={(el: HTMLDivElement | null) => {this.presetRefs[index] = el;}}
|
|
309
|
+
ariaLabel={preset.ariaLabel}
|
|
281
310
|
>
|
|
282
|
-
|
|
311
|
+
{preset.label}
|
|
283
312
|
</SampleCaptionsStyleButton>
|
|
284
313
|
))}
|
|
285
314
|
</div>
|
|
@@ -291,9 +320,10 @@ class MainCaptionsWindow extends Component<any, any> {
|
|
|
291
320
|
changeCaptionsStyle={() => props.changeCaptionsStyle(props.customPresetStyle, "Advanced_captions_custom")}
|
|
292
321
|
isActive={isCustomActive}
|
|
293
322
|
tabIndex={0}
|
|
323
|
+
ariaLabel={this.props.sampleCustom}
|
|
294
324
|
>
|
|
295
325
|
<span className={style.customButtonText}>
|
|
296
|
-
|
|
326
|
+
Custom captions
|
|
297
327
|
</span>
|
|
298
328
|
{isCustomActive && (
|
|
299
329
|
<span className={style.activeTick}>
|
|
@@ -312,15 +342,16 @@ class MainCaptionsWindow extends Component<any, any> {
|
|
|
312
342
|
props.setCustomOrEditRef?.(el);
|
|
313
343
|
}}
|
|
314
344
|
onKeyDown={this.onKeyDown}
|
|
345
|
+
aria-label={this.props.setCustomCaption}
|
|
315
346
|
>
|
|
316
347
|
<span>
|
|
317
|
-
|
|
348
|
+
Set custom caption
|
|
318
349
|
</span>
|
|
319
350
|
</button>
|
|
320
351
|
</div>
|
|
321
352
|
<div className={`${style.previewContainer} ${activePreset?.key === "easyReading" ? style.previewEasyReading : ""}`}>
|
|
322
353
|
<span style={this.getActiveStyle().toCSS()}>
|
|
323
|
-
|
|
354
|
+
{this.props.captionPreview}
|
|
324
355
|
</span>
|
|
325
356
|
</div>
|
|
326
357
|
</div>
|
|
@@ -40,6 +40,7 @@ const SampleCaptionsStyleButton = (props: any) => {
|
|
|
40
40
|
role="radio"
|
|
41
41
|
tabIndex={typeof props.tabIndex === 'number' ? props.tabIndex : (props.isActive ? 0 : -1)}
|
|
42
42
|
aria-checked={props.isActive ? 'true' : 'false'}
|
|
43
|
+
aria-label={props['ariaLabel']}
|
|
43
44
|
ref={el => {
|
|
44
45
|
if (el) {
|
|
45
46
|
_sampleCaptionsElRef.current = el;
|
|
@@ -100,7 +100,7 @@ class SmartContainer extends Component<any, any> {
|
|
|
100
100
|
addAccessibleChild={this.props.addAccessibleChild}
|
|
101
101
|
ariaLabel={props.label ? props.label : props.settingsText}
|
|
102
102
|
>
|
|
103
|
-
<
|
|
103
|
+
<h2 className={style.title}>{props.title}</h2>
|
|
104
104
|
{this.renderChildren(props)}
|
|
105
105
|
</Overlay>,
|
|
106
106
|
getOverlayPortalElement(props.player)!
|
|
@@ -100,6 +100,13 @@
|
|
|
100
100
|
"cvaa": {
|
|
101
101
|
"title": "Configuració avançada dels subtítols",
|
|
102
102
|
"sample_caption_tag": "Subtítol exemple {{number}}",
|
|
103
|
+
"sample_high_contrast": "Alt contrast",
|
|
104
|
+
"sample_minimalist": "Minimalista",
|
|
105
|
+
"sample_classic_tv": "Clàssic",
|
|
106
|
+
"sample_easy_reading": "Lectura fàcil",
|
|
107
|
+
"sample_early_readers": "Lectors principiants",
|
|
108
|
+
"sample_night_mode": "Mode nocturn",
|
|
109
|
+
"sample_custom": "Personalitzat",
|
|
103
110
|
"sample_custom_caption_tag": "Subtítols personalitzats",
|
|
104
111
|
"set_custom_caption": "Establir subtítol personalitzat",
|
|
105
112
|
"edit_caption": "Editar subtítol",
|
|
@@ -112,7 +119,8 @@
|
|
|
112
119
|
"background_color_label": "Color de fons",
|
|
113
120
|
"background_opacity_label": "Opacitat del fons",
|
|
114
121
|
"apply": "Aplicar",
|
|
115
|
-
"caption_preview": "Aquesta és la previsualització del teu subtítol"
|
|
122
|
+
"caption_preview": "Aquesta és la previsualització del teu subtítol",
|
|
123
|
+
"close_label": "Tanca la configuració avançada dels subtítols"
|
|
116
124
|
},
|
|
117
125
|
"cast": {
|
|
118
126
|
"play_on_tv": "Reproduir a la TV",
|
|
@@ -61,6 +61,13 @@
|
|
|
61
61
|
"cvaa": {
|
|
62
62
|
"title": "Erweiterte Einstellungen für Untertitel",
|
|
63
63
|
"sample_caption_tag": "Beispiel {{number}}",
|
|
64
|
+
"sample_high_contrast": "Hoher Kontrast",
|
|
65
|
+
"sample_minimalist": "Minimalist",
|
|
66
|
+
"sample_classic_tv": "Klassisch",
|
|
67
|
+
"sample_easy_reading": "leicht zu lesen",
|
|
68
|
+
"sample_early_readers": "Erstleser",
|
|
69
|
+
"sample_night_mode": "Nachtmodus",
|
|
70
|
+
"sample_custom": "Benutzerdefiniert",
|
|
64
71
|
"sample_custom_caption_tag": "Benutzerdefinierte Untertitel",
|
|
65
72
|
"set_custom_caption": "Benutzerdefinierte Untertitel auswählen",
|
|
66
73
|
"edit_caption": "Untertitel bearbeiten",
|
|
@@ -72,7 +79,8 @@
|
|
|
72
79
|
"background_color_label": "Hintergrundfarbe",
|
|
73
80
|
"background_opacity_label": "Deckkraft Hintergrund",
|
|
74
81
|
"apply": "Übernehmen",
|
|
75
|
-
"caption_preview": "Untertitelvorschau"
|
|
82
|
+
"caption_preview": "Untertitelvorschau",
|
|
83
|
+
"close_label": "Erweiterte Einstellungen für Untertitel schließen"
|
|
76
84
|
},
|
|
77
85
|
"cast": {
|
|
78
86
|
"play_on_tv": "Über Fernseher abspielen",
|
|
@@ -60,6 +60,13 @@
|
|
|
60
60
|
"cvaa": {
|
|
61
61
|
"title": "Configuración avanzada de los subtítulos",
|
|
62
62
|
"sample_caption_tag": "Ejemplo {{number}}",
|
|
63
|
+
"sample_high_contrast": "Contraste alto",
|
|
64
|
+
"sample_minimalist": "Minimalista",
|
|
65
|
+
"sample_classic_tv": "Clásico",
|
|
66
|
+
"sample_easy_reading": "Fácil de leer",
|
|
67
|
+
"sample_early_readers": "Primeros lectores",
|
|
68
|
+
"sample_night_mode": "Modo nocturno",
|
|
69
|
+
"sample_custom": "Personalizado",
|
|
63
70
|
"sample_custom_caption_tag": "Personalizar subtítulos",
|
|
64
71
|
"set_custom_caption": "Configurar subtítulos personalizados",
|
|
65
72
|
"edit_caption": "Editar subtítulo",
|
|
@@ -71,7 +78,8 @@
|
|
|
71
78
|
"background_color_label": "Color de fondo",
|
|
72
79
|
"background_opacity_label": "Opacidad del fondo",
|
|
73
80
|
"apply": "Aplicar",
|
|
74
|
-
"caption_preview": "Esta es la vista previa de su subtítulo"
|
|
81
|
+
"caption_preview": "Esta es la vista previa de su subtítulo",
|
|
82
|
+
"close_label": "Cerrar configuración avanzada de los subtítulos"
|
|
75
83
|
},
|
|
76
84
|
"cast": {
|
|
77
85
|
"play_on_tv": "Reproducir en TV",
|
|
@@ -60,6 +60,13 @@
|
|
|
60
60
|
"cvaa": {
|
|
61
61
|
"title": "Tekstityksen lisäasetukset",
|
|
62
62
|
"sample_caption_tag": "Esimerkki {{number}}",
|
|
63
|
+
"sample_high_contrast": "Suuri kontrasti",
|
|
64
|
+
"sample_minimalist": "Minimalistinen",
|
|
65
|
+
"sample_classic_tv": "Klassinen",
|
|
66
|
+
"sample_easy_reading": "Helppolukuinen",
|
|
67
|
+
"sample_early_readers": "Varhain lukemaan oppineet",
|
|
68
|
+
"sample_night_mode": "Yötila",
|
|
69
|
+
"sample_custom": "Mukautettu",
|
|
63
70
|
"sample_custom_caption_tag": "Mukautetut tekstitykset",
|
|
64
71
|
"set_custom_caption": "Aseta mukautettu tekstitys",
|
|
65
72
|
"edit_caption": "Muokkaa tekstitystä",
|
|
@@ -71,7 +78,8 @@
|
|
|
71
78
|
"background_color_label": "Taustaväri",
|
|
72
79
|
"background_opacity_label": "Taustavärin peittävyys",
|
|
73
80
|
"apply": "Käytä",
|
|
74
|
-
"caption_preview": "Tämä on esikatselu tekstityksestäsi"
|
|
81
|
+
"caption_preview": "Tämä on esikatselu tekstityksestäsi",
|
|
82
|
+
"close_label": "Sulje tekstityksen lisäasetukset"
|
|
75
83
|
},
|
|
76
84
|
"cast": {
|
|
77
85
|
"play_on_tv": "Toista TV:ssä",
|
|
@@ -60,6 +60,13 @@
|
|
|
60
60
|
"cvaa": {
|
|
61
61
|
"title": "Paramètres avancés de sous-titres",
|
|
62
62
|
"sample_caption_tag": "Échantillon {{number}}",
|
|
63
|
+
"sample_high_contrast": "Contraste élevé",
|
|
64
|
+
"sample_minimalist": "Minimaliste",
|
|
65
|
+
"sample_classic_tv": "Classique",
|
|
66
|
+
"sample_easy_reading": "Lecture facile",
|
|
67
|
+
"sample_early_readers": "Premiers débutants",
|
|
68
|
+
"sample_night_mode": "Mode nuit",
|
|
69
|
+
"sample_custom": "Personnalisé",
|
|
63
70
|
"sample_custom_caption_tag": "Sous-titres personnalisés",
|
|
64
71
|
"set_custom_caption": "Régler les sous-titres personnalisées",
|
|
65
72
|
"edit_caption": "Modifier le sous-titre",
|
|
@@ -71,7 +78,8 @@
|
|
|
71
78
|
"background_color_label": "Couleur d’arrière-plan",
|
|
72
79
|
"background_opacity_label": "Opacité d’arrière-plan",
|
|
73
80
|
"apply": "Appliquer",
|
|
74
|
-
"caption_preview": "Voici l’aperçu de vos sous-titres"
|
|
81
|
+
"caption_preview": "Voici l’aperçu de vos sous-titres",
|
|
82
|
+
"close_label": "Fermer Paramètres avancés des sous-titres"
|
|
75
83
|
},
|
|
76
84
|
"cast": {
|
|
77
85
|
"play_on_tv": "Lire sur le TV",
|
|
@@ -60,6 +60,13 @@
|
|
|
60
60
|
"cvaa": {
|
|
61
61
|
"title": "Paramètres avancés de sous-titres",
|
|
62
62
|
"sample_caption_tag": "Échantillon {{number}}",
|
|
63
|
+
"sample_high_contrast": "Contraste élevé",
|
|
64
|
+
"sample_minimalist": "Minimaliste",
|
|
65
|
+
"sample_classic_tv": "Classique",
|
|
66
|
+
"sample_easy_reading": "Lecture facile",
|
|
67
|
+
"sample_early_readers": "Premiers lecteurs",
|
|
68
|
+
"sample_night_mode": "Mode nuit",
|
|
69
|
+
"sample_custom": "Personnalisé",
|
|
63
70
|
"sample_custom_caption_tag": "Sous-titres personnalisés",
|
|
64
71
|
"set_custom_caption": "Paramétrer les sous-titres personnalisés",
|
|
65
72
|
"edit_caption": "Modifier les sous-titres",
|
|
@@ -71,7 +78,8 @@
|
|
|
71
78
|
"background_color_label": "Couleur d’arrière-plan",
|
|
72
79
|
"background_opacity_label": "Opacité de l’arrière-plan",
|
|
73
80
|
"apply": "Appliquer",
|
|
74
|
-
"caption_preview": "Ceci est un aperçu de vos sous-titres"
|
|
81
|
+
"caption_preview": "Ceci est un aperçu de vos sous-titres",
|
|
82
|
+
"close_label": "Fermer les paramètres avancés de sous-titres"
|
|
75
83
|
},
|
|
76
84
|
"cast": {
|
|
77
85
|
"play_on_tv": "Lire sur la TV",
|
|
@@ -60,6 +60,13 @@
|
|
|
60
60
|
"cvaa": {
|
|
61
61
|
"title": "Impostazioni didascalie avanzate",
|
|
62
62
|
"sample_caption_tag": "Campione {{number}}",
|
|
63
|
+
"sample_high_contrast": "Contrasto elevato",
|
|
64
|
+
"sample_minimalist": "Minimal",
|
|
65
|
+
"sample_classic_tv": "Classico",
|
|
66
|
+
"sample_easy_reading": "Lettura agevolata",
|
|
67
|
+
"sample_early_readers": "Primi lettori",
|
|
68
|
+
"sample_night_mode": "Modalità notte",
|
|
69
|
+
"sample_custom": "Personalizza",
|
|
63
70
|
"sample_custom_caption_tag": "Didascalie personalizzate",
|
|
64
71
|
"set_custom_caption": "Imposta didascalia personalizzata",
|
|
65
72
|
"edit_caption": "Modifica didascalia",
|
|
@@ -71,7 +78,8 @@
|
|
|
71
78
|
"background_color_label": "Colore sfondo",
|
|
72
79
|
"background_opacity_label": "Opacità sfondo",
|
|
73
80
|
"apply": "Applica",
|
|
74
|
-
"caption_preview": "Anteprima didascalia"
|
|
81
|
+
"caption_preview": "Anteprima didascalia",
|
|
82
|
+
"close_label": "Chiudi Impostazioni didascalie avanzate"
|
|
75
83
|
},
|
|
76
84
|
"cast": {
|
|
77
85
|
"play_on_tv": "Riproduci su TV",
|
|
@@ -60,6 +60,13 @@
|
|
|
60
60
|
"cvaa": {
|
|
61
61
|
"title": "キャプションの詳細設定",
|
|
62
62
|
"sample_caption_tag": "サンプル {{number}}",
|
|
63
|
+
"sample_high_contrast": "ハイコントラスト",
|
|
64
|
+
"sample_minimalist": "ミニマリスト",
|
|
65
|
+
"sample_classic_tv": "クラシック",
|
|
66
|
+
"sample_easy_reading": "やさしい内容",
|
|
67
|
+
"sample_early_readers": "子ども向け",
|
|
68
|
+
"sample_night_mode": "ナイト モード",
|
|
69
|
+
"sample_custom": "カスタム",
|
|
63
70
|
"sample_custom_caption_tag": "カスタム キャプション",
|
|
64
71
|
"set_custom_caption": "カスタム キャプションの設定",
|
|
65
72
|
"edit_caption": "キャプションを編集する",
|
|
@@ -71,7 +78,8 @@
|
|
|
71
78
|
"background_color_label": "背景色",
|
|
72
79
|
"background_opacity_label": "背景の透明度",
|
|
73
80
|
"apply": "適用する",
|
|
74
|
-
"caption_preview": "これはキャプションのプレビューです"
|
|
81
|
+
"caption_preview": "これはキャプションのプレビューです",
|
|
82
|
+
"close_label": "キャプションの詳細設定を閉じる"
|
|
75
83
|
},
|
|
76
84
|
"cast": {
|
|
77
85
|
"play_on_tv": "TV で再生する",
|
|
@@ -60,6 +60,13 @@
|
|
|
60
60
|
"cvaa": {
|
|
61
61
|
"title": "고급 자막 설정",
|
|
62
62
|
"sample_caption_tag": "샘플 {{number}}",
|
|
63
|
+
"sample_high_contrast": "고대비",
|
|
64
|
+
"sample_minimalist": "미니멀리스트",
|
|
65
|
+
"sample_classic_tv": "클래식",
|
|
66
|
+
"sample_easy_reading": "가독성 모드",
|
|
67
|
+
"sample_early_readers": "초급 독자용",
|
|
68
|
+
"sample_night_mode": "야간 모드",
|
|
69
|
+
"sample_custom": "사용자 지정",
|
|
63
70
|
"sample_custom_caption_tag": "자막 변경",
|
|
64
71
|
"set_custom_caption": "자막 설정하기",
|
|
65
72
|
"edit_caption": "자막 편집",
|
|
@@ -71,7 +78,8 @@
|
|
|
71
78
|
"background_color_label": "배경색",
|
|
72
79
|
"background_opacity_label": "배경 불투명도",
|
|
73
80
|
"apply": "적용",
|
|
74
|
-
"caption_preview": "자막 미리 보기입니다"
|
|
81
|
+
"caption_preview": "자막 미리 보기입니다",
|
|
82
|
+
"close_label": "고급 캡션 설정 닫기"
|
|
75
83
|
},
|
|
76
84
|
"cast": {
|
|
77
85
|
"play_on_tv": "TV에서 재생",
|
|
@@ -60,6 +60,13 @@
|
|
|
60
60
|
"cvaa": {
|
|
61
61
|
"title": "Geavanceerde instellingen voor onderschriften",
|
|
62
62
|
"sample_caption_tag": "Voorbeeld {{number}}",
|
|
63
|
+
"sample_high_contrast": "Hoog contrast",
|
|
64
|
+
"sample_minimalist": "Minimalist",
|
|
65
|
+
"sample_classic_tv": "Klassiek",
|
|
66
|
+
"sample_easy_reading": "Gemakkelijk leesbaar",
|
|
67
|
+
"sample_early_readers": "Beginnende lezers",
|
|
68
|
+
"sample_night_mode": "Nachtmodus",
|
|
69
|
+
"sample_custom": "Aangepast",
|
|
63
70
|
"sample_custom_caption_tag": "Aangepaste onderschriften",
|
|
64
71
|
"set_custom_caption": "Aangepast onderschrift instellen",
|
|
65
72
|
"edit_caption": "Onderschrift bewerken",
|
|
@@ -71,7 +78,8 @@
|
|
|
71
78
|
"background_color_label": "Achtergrondkleur",
|
|
72
79
|
"background_opacity_label": "Achtergronddekking",
|
|
73
80
|
"apply": "Toepassen",
|
|
74
|
-
"caption_preview": "Dit is uw onderschriftvoorbeeld"
|
|
81
|
+
"caption_preview": "Dit is uw onderschriftvoorbeeld",
|
|
82
|
+
"close_label": "Geavanceerde ondertitelingsinstellingen sluiten"
|
|
75
83
|
},
|
|
76
84
|
"cast": {
|
|
77
85
|
"play_on_tv": "Afspelen op TV",
|
|
@@ -60,6 +60,13 @@
|
|
|
60
60
|
"cvaa": {
|
|
61
61
|
"title": "Configurações avançadas de legendas",
|
|
62
62
|
"sample_caption_tag": "Amostra {{number}}",
|
|
63
|
+
"sample_high_contrast": "Alto contraste",
|
|
64
|
+
"sample_minimalist": "Minimalista",
|
|
65
|
+
"sample_classic_tv": "Clássico",
|
|
66
|
+
"sample_easy_reading": "Fácil leitura",
|
|
67
|
+
"sample_early_readers": "Para crianças leitoras",
|
|
68
|
+
"sample_night_mode": "Modo noturno",
|
|
69
|
+
"sample_custom": "Personalizado",
|
|
63
70
|
"sample_custom_caption_tag": "Legendas personalizadas",
|
|
64
71
|
"set_custom_caption": "Definir legenda personalizada",
|
|
65
72
|
"edit_caption": "Editar legenda",
|
|
@@ -71,7 +78,8 @@
|
|
|
71
78
|
"background_color_label": "Cor de fundo",
|
|
72
79
|
"background_opacity_label": "Opacidade do fundo",
|
|
73
80
|
"apply": "Aplicar",
|
|
74
|
-
"caption_preview": "Esta é a pré-visualização da sua legenda"
|
|
81
|
+
"caption_preview": "Esta é a pré-visualização da sua legenda",
|
|
82
|
+
"close_label": "Fechar configurações avançadas de legendas"
|
|
75
83
|
},
|
|
76
84
|
"cast": {
|
|
77
85
|
"play_on_tv": "Reproduzir na TV",
|
|
@@ -60,6 +60,13 @@
|
|
|
60
60
|
"cvaa": {
|
|
61
61
|
"title": "Расширенные настройки субтитров",
|
|
62
62
|
"sample_caption_tag": "Образец {{number}}",
|
|
63
|
+
"sample_high_contrast": "Высокая контрастность",
|
|
64
|
+
"sample_minimalist": "Минималистичный дизайн",
|
|
65
|
+
"sample_classic_tv": "Классический вариант",
|
|
66
|
+
"sample_easy_reading": "Легкое чтение",
|
|
67
|
+
"sample_early_readers": "Для начинающих читать",
|
|
68
|
+
"sample_night_mode": "Ночной режим",
|
|
69
|
+
"sample_custom": "Пользовательская настройка",
|
|
63
70
|
"sample_custom_caption_tag": "Индивидуальные субтитры",
|
|
64
71
|
"set_custom_caption": "Установить индивидуальные субтитры",
|
|
65
72
|
"edit_caption": "Редактировать субтитры",
|
|
@@ -71,7 +78,8 @@
|
|
|
71
78
|
"background_color_label": "Цвет фона",
|
|
72
79
|
"background_opacity_label": "Непрозрачность фона",
|
|
73
80
|
"apply": "Применить",
|
|
74
|
-
"caption_preview": "Это предварительный просмотр ваших субтитров"
|
|
81
|
+
"caption_preview": "Это предварительный просмотр ваших субтитров",
|
|
82
|
+
"close_label": "Закрыть расширенные настройки субтитров"
|
|
75
83
|
},
|
|
76
84
|
"cast": {
|
|
77
85
|
"play_on_tv": "Воспроизвести на ТВ",
|
|
@@ -60,6 +60,13 @@
|
|
|
60
60
|
"cvaa": {
|
|
61
61
|
"title": "高级字幕设置",
|
|
62
62
|
"sample_caption_tag": "范例 {{number}}",
|
|
63
|
+
"sample_high_contrast": "高对比度",
|
|
64
|
+
"sample_minimalist": "极简主义",
|
|
65
|
+
"sample_classic_tv": "经典",
|
|
66
|
+
"sample_easy_reading": "轻松阅读",
|
|
67
|
+
"sample_early_readers": "初学读者",
|
|
68
|
+
"sample_night_mode": "夜间模式",
|
|
69
|
+
"sample_custom": "自定义",
|
|
63
70
|
"sample_custom_caption_tag": "自定义字幕",
|
|
64
71
|
"set_custom_caption": "设置自定义字幕",
|
|
65
72
|
"edit_caption": " 编辑字幕",
|
|
@@ -71,7 +78,8 @@
|
|
|
71
78
|
"background_color_label": "背景颜色",
|
|
72
79
|
"background_opacity_label": "背景透明度",
|
|
73
80
|
"apply": "采用",
|
|
74
|
-
"caption_preview": "这是您的字幕预览"
|
|
81
|
+
"caption_preview": "这是您的字幕预览",
|
|
82
|
+
"close_label": "关闭高级字幕设置"
|
|
75
83
|
},
|
|
76
84
|
"cast": {
|
|
77
85
|
"play_on_tv": "在电视上播放",
|
|
@@ -60,6 +60,13 @@
|
|
|
60
60
|
"cvaa": {
|
|
61
61
|
"title": "進階字幕設定",
|
|
62
62
|
"sample_caption_tag": "樣本 {{number}}",
|
|
63
|
+
"sample_high_contrast": "高對比",
|
|
64
|
+
"sample_minimalist": "極簡主義",
|
|
65
|
+
"sample_classic_tv": "經典",
|
|
66
|
+
"sample_easy_reading": "輕鬆閱讀",
|
|
67
|
+
"sample_early_readers": "幼兒讀者",
|
|
68
|
+
"sample_night_mode": "夜間模式",
|
|
69
|
+
"sample_custom": "自訂",
|
|
63
70
|
"sample_custom_caption_tag": "自訂字幕",
|
|
64
71
|
"set_custom_caption": "設定自訂字幕",
|
|
65
72
|
"edit_caption": "编辑字幕",
|
|
@@ -71,7 +78,8 @@
|
|
|
71
78
|
"background_color_label": "背景颜色",
|
|
72
79
|
"background_opacity_label": "背景透明度",
|
|
73
80
|
"apply": "套用",
|
|
74
|
-
"caption_preview": "這是您的字幕預覽"
|
|
81
|
+
"caption_preview": "這是您的字幕預覽",
|
|
82
|
+
"close_label": "關閉進階字幕設定"
|
|
75
83
|
},
|
|
76
84
|
"cast": {
|
|
77
85
|
"play_on_tv": "在電視中播放",
|