forked from access42/AccesSlide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lang_fr.js
156 lines (156 loc) · 3.52 KB
/
lang_fr.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
155
156
var lang={
/** Accessibility **/
//vocalize slide number on total (1 on 4 for example)
VocalizeNdiapo: {
label: 'Numéro de diapo',
help: 'Vocalise les numéros des diapositives lors de leur affichage'
} ,
//Play a sound (beep) when displaying hidden text
SoundTxt: {
label: 'Textes masqués',
help: 'Émet un bip lors de l\'affichage des textes masqués'
},
//Play a sound (beep) when displaying a slide
SoundSlide: {
label: 'Diapo',
help: 'Émet un bip lors de l\'affichage des diapos'
},
//Play a sound (beep) when displaying first slide
SoundSlide1: {
label: 'Diapo début',
help: 'Émet un bip lors de l\'affichage de la première diapo'
},
//Play a sound (beep) when displaying last slide
SoundSlideEnd: {
label: 'Diapo fin',
help: 'Émet un bip lors de l\'affichage de la dernière diapo'
},
//Vocalize the title of the current slide
VocalizeTitle: {
label: 'Titre',
help: 'Vocalise le titre de la diapo courante'
},
//Update the window title
UpWindowTitle: {
label: 'Titre fenêtre',
help: 'Met à jour le titre de la fenêtre à l\'affichage d\'une diapo'
},
//Skip to the "next" button on slideshow onload
GotoBnext: {
label: 'Bouton suivant',
help: 'Donne le focus sur le bouton suivant lors de l\'affichage du diaporama'
},
//Deactivate click button function to go to next slide
//Warning : deactivate spacebar function too
Noclick: {
label: 'Clic',
help: 'Désactive l\'action du clic (et de la barre d\'espace) pour afficher la diapo suivante.'
},
/** Slideshow parameters **/
// Display summary as :
// 0 : no-modal window
// 1 : modal window
SumModOn: {
label: 'Sommaire',
help: 'Afficher le sommaire comme une fenêtre modale'
},
// Switch CSS3=1 or JS=0 for shutter animation
AnimCssOn: {
label: 'Balayage',
help: 'Utiliser CSS3 pour les effets de balayage'
},
// Switch ModePlan=1 for Linear Layout
ModePlan: {
label: 'Mode plan',
help: 'Utiliser le mode plan pour afficher les diapos en succession linéaire'
},
/** Effects **/
// Effects select label
LabelEffect: 'Type d\'animation',
// Noeffects
Eno: {
help: 'Pas d\'effet'
},
// Fade in
Efadin: {
help: 'Apparition progressive'
},
// Scale
Escale: {
help: 'Échelle'
},
// Flash
Flash: {
help: 'Apparition flash'
},
// Flip
Flip: {
help: 'Apparition flip'
},
// Shutter left
Eleft: {
help: 'Balayage vers la gauche'
},
// Shutter rigth
Eright: {
help: 'Balayage vers la droite'
},
// Shutter bottom
Ebottom: {
help: 'Balayage vers le bas'
},
// Shutter top
Etop: {
help: 'Balayage vers le haut'
},
// Group Legend
Gaccess: {
legend: 'Accessibilité'
},
Gslide: {
legend: 'Diaporama'
},
Geffects: {
legend: 'Effets'
},
/** Misceallanous **/
// Setting configuration windows modal properties
ConfigTitle: 'Paramètres',
SummaryTitle: 'Sommaire',
Wclose: 'Fermer',
// Setting buttons
Bsubmit: {
title:'Enregistrer la configuration',
value: 'Enregistrer'
},
Bdefault: {
title:'Configuration par défaut',
value: 'Défaut'
},
// Setting navbar button and select
// Ndxon = expression "on" in "1 on 4" for vocalization numbers slide
Bprev: {
title: 'Précédent',
alt: 'Précédent'
},
Bnext: {
title: 'Suivant',
alt: 'Suivant'
},
Select:{
title: 'Aller à la diapo numéro '
},
Bselect: {
title: 'Afficher la diapo',
alt: 'Afficher la diapo'
},
Btoc: {
title: 'Table des matières',
alt: 'Table des matières'
},
Bconfig: {
title: 'Configuration',
alt: 'Configuration'
},
Ndxon: 'sur'
}