forked from access42/AccesSlide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lang_template.js
144 lines (144 loc) · 3.4 KB
/
lang_template.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
var lang={
/** Accessibility **/
//vocalize slide number on total (1 on 4 for example)
VocalizeNdiapo: {
label: 'label of checkbox',
help: 'tooltip of checkbox'
} ,
//Play a sound (beep) when displaying hidden text
SoundTxt: {
label: 'label of checkbox',
help: 'tooltip of checkbox'
},
//Play a sound (beep) when displaying a slide
SoundSlide: {
label: 'label of checkbox',
help: 'tooltip of checkbox'
},
//Play a sound (beep) when displaying first slide
SoundSlide1: {
label: 'label of checkbox',
help: 'tooltip of checkbox'
},
//Play a sound (beep) when displaying last slide
SoundSlideEnd: {
label: 'label of checkbox',
help: 'tooltip of checkbox'
},
//Vocalize the heading of the current slide
VocalizeTitle: {
label: 'label of checkbox',
help: 'tooltip of checkbox'
},
//Update the window heading
UpWindowTitle: {
label: 'label of checkbox',
help: 'tooltip of checkbox'
},
//Skip to the "next" button on slideshow onload
GotoBnext: {
label: 'label of checkbox',
help: 'tooltip of checkbox'
},
//Deactivate click button function to go to next slide
//Warning : deactivate spacebar function too
Noclick: {
label: 'label of checkbox',
help: 'tooltip of checkbox'
},
/** Slideshow parameters **/
// Display summary as modal window
SumModOn: {
label: 'label of checkbox',
help: 'tooltip of checkbox'
},
// Switch CSS3=1 or JS=0 for shutter animation
AnimCssOn: {
label: 'label of checkbox',
help: 'tooltip of checkbox'
},
// Switch ModePlan=1 for Linear Layout
ModePlan: {
label: 'label of checkbox',
help: 'tooltip of checkbox'
},
/** Effects **/
// Effects select label
LabelEffect: 'Animation type',
// Noeffects
Eno: {
help: 'Value texte of option'
},
// Fade in
Efadin: {
help: 'Value texte of option'
},
// Shutter left
Eleft: {
help: 'Value texte of option't'
},
// Shutter rigth
Eright: {
help: 'Value texte of option'
},
// Shutter bottom
Ebottom: {
help: 'Value texte of option'
},
// Shutter top
Etop: {
help: 'Value texte of option'
},
// Group Legend
Gaccess: {
legend: 'Legend of group accessiblity'
},
Gslide: {
legend: 'Legend of group slideshow'
},
Geffects: {
legend: 'Legend of group effects'
},
/** Misceallanous **/
// Setting configuration windows modal properties
ConfigTitle: 'Configuration windows title',
SummaryTitle: 'Summary windows title',
Wclose: 'Label of close button',
// Setting buttons
Bsubmit: {
title:'Title of button save configuration',
value: 'Label of button save configuration'
},
Bdefault: {
title:'Title of button reset configuration',
value: 'Label of button reset configuration'
},
// Setting navbar button and select
// Ndxon = expression "on" in "1 on 4" for vocalization numbers slide
// Warning : generally title and alt are identical
Bprev: {
title: 'Title of previous button',
alt: 'Alt of previous button'
},
Bnext: {
title: 'Title of next button',
alt: 'Alt of next button'
},
Select:{
title: 'Ttitle of select dropdown'
},
Bselect: {
title: 'Title of go to slide button',
alt: 'Alt of go to slide button'
},
Btoc: {
title: 'Title of open summary button',
alt: 'Alt of open summary button'
},
Bconfig: {
title: 'Title of open configuration button',
alt: 'Alt of open configuration button'
},
//Special case : expression for the "x on total" zone
Ndxon: 'Texte for index navigation zone'
}