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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
|
<?php // ================================================ // SPAW v.2.0.5 // ================================================ // French language file // ================================================ // Author: oVa, Toulouse (France) // ------------------------------------------------ // www.solmetra.com // ================================================ // v.2.0.5 // ================================================
// charset to be used in dialogs $spaw_lang_charset = 'utf-8';
// language text data array // first dimension - block, second - exact phrase // alternative text for toolbar buttons and title for dropdowns - 'title'
$spaw_lang_data = array( 'cut' => array( 'title' => 'Couper' ), 'copy' => array( 'title' => 'Copier' ), 'paste' => array( 'title' => 'Coller' ), 'undo' => array( 'title' => 'Annuler' ), 'redo' => array( 'title' => 'Répéter' ), 'image' => array( 'title' => 'Insérer une image' ), 'image_prop' => array( 'title' => 'Propriétés de l\'image', 'ok' => ' OK ', 'cancel' => 'Fermer', 'source' => 'Source', 'alt' => 'Texte alternatif', 'align' => 'Alignement', 'left' => 'Gauche', 'right' => 'Droite', 'top' => 'Haut', 'middle' => 'Milieu', 'bottom' => 'Bas', 'absmiddle' => 'Milieu absolu', 'texttop' => 'Haut de ligne', 'baseline' => 'Bas de ligne', 'width' => 'Largeur', 'height' => 'Hauteur', 'border' => 'Bordure', 'hspace' => 'Espacement Horiz', 'vspace' => 'Espacement Vertic', 'dimensions' => 'Dimensions', // <= new in 2.0.1 'reset_dimensions' => 'Réinitialiser les dimensions', // <= new in 2.0.1 'title_attr' => 'Titre', // <= new in 2.0.1 'constrain_proportions' => 'Conserver les proportions', // <= new in 2.0.1 'error' => 'Erreur', 'error_width_nan' => 'Largeur non numérique', 'error_height_nan' => 'Hauteur non numérique', 'error_border_nan' => 'Bordure non numérique', 'error_hspace_nan' => 'Espacement Horizontal non numérique', 'error_vspace_nan' => 'Espacement Vertical non numérique', ), 'flash_prop' => array( // <= new in 2.0 'title' => 'Insérer une animation flash', 'ok' => ' OK ', 'cancel' => 'Fermer', 'source' => 'Source', 'width' => 'Largeur', 'height' => 'Hauteur', 'error' => 'Erreur', 'error_width_nan' => 'Largeur non numérique', 'error_height_nan' => 'Hauteur non numérique', ), 'inserthorizontalrule' => array( // <== v.2.0 changed from hr 'title' => 'Séparateur horizontal' ), 'table_create' => array( 'title' => 'Creer un tableau' ), 'table_prop' => array( 'title' => 'Propriétés du Tableau', 'ok' => ' OK ', 'cancel' => 'Fermer', 'rows' => 'Lignes', 'columns' => 'Colonnes', 'css_class' => 'Classe CSS', 'width' => 'Largeur', 'height' => 'Hauteur', 'border' => 'Bordure', 'pixels' => 'Pixels', 'cellpadding' => 'Marge de cellule', 'cellspacing' => 'Espace entre cellules', 'bg_color' => 'Couleur de fond', 'background' => 'Image de fond', 'error' => 'Erreur', 'error_rows_nan' => 'Lignes non numériques', 'error_columns_nan' => 'Colonnes non numériques', 'error_width_nan' => 'Largeur non numérique', 'error_height_nan' => 'Hauteur non numérique', 'error_border_nan' => 'Bordure non numérique', 'error_cellpadding_nan' => 'Marge de cellule non numérique', 'error_cellspacing_nan' => 'Espace entre cellules non numérique', ), 'table_cell_prop' => array( 'title' => 'Propriétés de la cellule', 'horizontal_align' => 'Alignement Horizontal', 'vertical_align' => 'Alignement Vertical', 'width' => 'Largeur', 'height' => 'Hauteur', 'css_class' => 'Classe CSS', 'no_wrap' => 'Pas de saut de ligne automatique', 'bg_color' => 'Couleur de fond', 'background' => 'Image de fond', 'ok' => ' OK ', 'cancel' => 'Fermer', 'left' => 'Gauche', 'center' => 'Centre', 'right' => 'Droite', 'top' => 'Haut', 'middle' => 'Milieu', 'bottom' => 'Bas', 'baseline' => 'Bas de ligne', 'error' => 'Erreur', 'error_width_nan' => 'Largeur non numérique', 'error_height_nan' => 'Hauteur non numérique', ), 'table_row_insert' => array( 'title' => 'Insérer une ligne' ), 'table_column_insert' => array( 'title' => 'Insérer une colonne' ), 'table_row_delete' => array( 'title' => 'Supprimer une ligne' ), 'table_column_delete' => array( 'title' => 'Supprimer une colonne' ), 'table_cell_merge_right' => array( 'title' => 'Fusionner avec cellule de droite' ), 'table_cell_merge_down' => array( 'title' => 'Fusionner avec cellule du bas' ), 'table_cell_split_horizontal' => array( 'title' => 'Partager la cellule horizontalement' ), 'table_cell_split_vertical' => array( 'title' => 'Partager la cellule verticalement' ), 'style' => array( 'title' => 'Style' ), 'fontname' => array( // <== v.2.0 changed from font 'title' => 'Police' ), 'fontsize' => array( 'title' => 'Taille' ), 'formatBlock' => array( // <= v.2.0: changed from paragraph 'title' => 'Paragraphe' ), 'bold' => array( 'title' => 'Gras' ), 'italic' => array( 'title' => 'Italique' ), 'underline' => array( 'title' => 'Souligné' ), 'strikethrough' => array( 'title' => 'Barré' ), 'insertorderedlist' => array( // <== v.2.0 changed from ordered_list 'title' => 'Numéros' ), 'insertunorderedlist' => array( // <== v.2.0 changed from bulleted list 'title' => 'Puces' ), 'indent' => array( 'title' => 'Augmenter la marge à droite' ), 'outdent' => array( // <== v.2.0 changed from unindent 'title' => 'Augmenter la marge à gauche' ), 'justifyleft' => array( // <== v.2.0 changed from left 'title' => 'Gauche' ), 'justifycenter' => array( // <== v.2.0 changed from center 'title' => 'Centré' ), 'justifyright' => array( // <== v.2.0 changed from right 'title' => 'Droite' ), 'justifyfull' => array( // <== v.2.0 changed from justify 'title' => 'Justifié' ), 'fore_color' => array( 'title' => 'Couleur du texte' ), 'bg_color' => array( 'title' => 'Couleur de fond' ), 'design' => array( // <== v.2.0 changed from design_tab 'title' => 'Basculer en mode WYSIWYG (Design)' ), 'html' => array( // <== v.2.0 changed from html_tab 'title' => 'Basculer en mode HTML (Code)' ), 'colorpicker' => array( 'title' => 'Choix de couleur', 'ok' => ' OK ', 'cancel' => 'Fermer', ), 'cleanup' => array( 'title' => 'Nettoyer le code HTML (enlever les styles)', 'confirm' => 'Valider cette action supprimera tous les styles, polices, et tags html inutiles du contenu actuel. Tout ou une partie de votre formattage pourrait être perdu.', 'ok' => ' OK ', 'cancel' => 'Fermer', ), 'toggle_borders' => array( 'title' => 'Activer/Désactiver bordures', ), 'hyperlink' => array( 'title' => 'Lien', 'url' => 'URL', 'name' => 'Nom', 'target' => 'Cible', 'title_attr' => 'Titre', 'a_type' => 'Type', 'type_link' => 'Lien', 'type_anchor' => 'Ancre', 'type_link2anchor' => 'Lien vers une ancre', 'anchors' => 'Ancres', 'ok' => ' OK ', 'cancel' => 'Fermer', ), 'hyperlink_targets' => array( '_self' => 'Page actuelle (_self)', '_blank' => 'Nouvelle fenêtre (_blank)', '_top' => 'Cadre de haut niveau (_top)', '_parent' => 'Cadre parent (_parent)' ), 'unlink' => array( // <=== new v.2.0 'title' => 'Supprimer Lien' ), 'table_row_prop' => array( 'title' => 'Propriétés de ligne', 'horizontal_align' => 'Alignement Horizontal', 'vertical_align' => 'Alignement Vertical', 'css_class' => 'Classe CSS', 'no_wrap' => 'Pas de saut de ligne automatique', 'bg_color' => 'Couleur de fond', 'ok' => ' OK ', 'cancel' => 'Fermer', 'left' => 'Gauche', 'center' => 'Centre', 'right' => 'Droite', 'top' => 'Haut', 'middle' => 'Milieu', 'bottom' => 'Bas', 'baseline' => 'Bas de ligne', ), 'symbols' => array( 'title' => 'Caractères spéciaux', 'ok' => ' OK ', 'cancel' => 'Fermer', ), 'templates' => array( 'title' => 'Modèles', ), 'page_prop' => array( 'title' => 'Propriétés de la page', 'title_tag' => 'Titre', 'charset' => 'Jeu de charactères', 'background' => 'Image de fond', 'bgcolor' => 'Couleur de fond', 'text' => 'Couleur du texte', 'link' => 'Couleurs des liens', 'vlink' => 'Couleur des liens visités', 'alink' => 'Couleur des liens actifs', 'leftmargin' => 'Marge gauche', 'topmargin' => 'Marge haut', 'css_class' => 'Classe CSS', 'ok' => ' OK ', 'cancel' => 'Fermer', ), 'preview' => array( 'title' => 'Prévisualiser', ), 'image_popup' => array( 'title' => 'Popup image', ), 'zoom' => array( 'title' => 'Zoom', ), 'subscript' => array( 'title' => 'Indice', ), 'superscript' => array( 'title' => 'Exposant', ), ); ?>
|