forked from access42/AccesSlide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lang_en.js
154 lines (154 loc) · 3.22 KB
/
lang_en.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
var lang={
/** Accessibility **/
//vocalize slide number on total (1 on 4 for example)
VocalizeNdiapo: {
label: 'Slide number',
help: 'Read the slide number when displayed'
} ,
//Play a sound (beep) when displaying hidden text
SoundTxt: {
label: 'Hidden content',
help: 'Beep when a hidden content appears'
},
//Play a sound (beep) when displaying a slide
SoundSlide: {
label: 'Slide',
help: 'Beep when displaying a slide'
},
//Play a sound (beep) when displaying first slide
SoundSlide1: {
label: 'First slide',
help: 'Beep when displaying the first slide'
},
//Play a sound (beep) when displaying last slide
SoundSlideEnd: {
label: 'Last slide',
help: 'Beep when displaying the last slide'
},
//Vocalize the heading of the current slide
VocalizeTitle: {
label: 'Heading',
help: 'Read the heading of the current slide'
},
//Update the window heading
UpWindowTitle: {
label: 'Window heading',
help: 'Update the window heading when a slide is displayed'
},
//Skip to the "next" button on slideshow onload
GotoBnext: {
label: 'Next button',
help: 'Place the focus to the “Next” button when the slideshow is loading'
},
//Deactivate click button function to go to next slide
//Warning : deactivate spacebar function too
Noclick: {
label: 'Click',
help: 'Remove the click action (and the space bar) to display the next slide.'
},
/** Slideshow parameters **/
// Display summary as modal window
SumModOn: {
label: 'Summary',
help: 'Display the summary as a modal window'
},
// Switch CSS3=1 or JS=0 for shutter animation
AnimCssOn: {
label: 'Sweep effect',
help: 'Use CSS3 for sweep effect'
},
// Switch ModePlan=1 for Linear Layout
ModePlan: {
label: 'Outline view',
help: 'Use the linear layout to display the slides in linear succession'
},
/** Effects **/
// Effects select label
LabelEffect: 'Animation type',
// Noeffects
Eno: {
help: 'No effect'
},
// Fade in
Efadin: {
help: 'Gradual appearance'
},
// Scale
Escale: {
help: 'Scale'
},
// Flash
Flash: {
help: 'Flash appearance'
},
// Flip
Flip: {
help: 'Flip appearance'
},
// Shutter left
Eleft: {
help: 'Sweep to left'
},
// Shutter rigth
Eright: {
help: 'Sweep to right'
},
// Shutter bottom
Ebottom: {
help: 'Sweep to bottom'
},
// Shutter top
Etop: {
help: 'Sweep to top'
},
// Group Legend
Gaccess: {
legend: 'Accessibility'
},
Gslide: {
legend: 'Slideshow'
},
Geffects: {
legend: 'Effects'
},
/** Misceallanous **/
// Setting configuration windows modal properties
ConfigTitle: 'Configuration',
SummaryTitle: 'Summary',
Wclose: 'Close',
// Setting buttons
Bsubmit: {
title:'Save the configuration',
value: 'Save'
},
Bdefault: {
title:'Default configuration',
value: 'Default'
},
// Setting navbar button and select
// Ndxon = expression "on" in "1 on 4" for vocalization numbers slide
Bprev: {
title: 'Previous',
alt: 'Previous'
},
Bnext: {
title: 'Next',
alt: 'Next'
},
Select:{
title: 'Go to slide N°'
},
Bselect: {
title: 'Display the slide',
alt: 'Display the slide'
},
Btoc: {
title: 'Summary',
alt: 'Summary'
},
Bconfig: {
title: 'Configuration',
alt: 'Configuration'
},
Ndxon: 'on'
}