@innovastudio/contentbuilder 1.1.12 → 1.1.13
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/license.txt +79 -79
- package/package.json +1 -1
- package/public/contentbuilder/config.js +6 -6
- package/public/contentbuilder/contentbuilder.esm.js +31 -3
- package/public/contentbuilder/contentbuilder.min.js +1 -1
- package/public/contentbuilder/lang/en.js +337 -337
- package/public/contentbuilder/lang/fr.js +337 -337
- package/public/contentbuilder/plugins/buttoneditor/plugin.js +1600 -1600
- package/public/contentbuilder/plugins/buttoneditor/readme.txt +6 -6
- package/public/contentbuilder/plugins/helloworld/plugin.js +15 -15
- package/public/contentbuilder/plugins/helloworld/readme.txt +23 -23
- package/public/contentbuilder/plugins/preview/plugin.js +339 -339
- package/public/contentbuilder/plugins/preview/readme.txt +23 -23
- package/public/contentbuilder/plugins/searchreplace/plugin.js +459 -459
- package/public/contentbuilder/plugins/searchreplace/readme.txt +23 -23
- package/public/contentbuilder/plugins/searchreplace/searchreplace.html +264 -264
- package/public/contentbuilder/plugins/showgrid/plugin.js +74 -74
- package/public/contentbuilder/plugins/showgrid/readme.txt +23 -23
- package/public/contentbuilder/plugins/symbols/plugin.js +2876 -2876
- package/public/contentbuilder/plugins/symbols/readme.txt +23 -23
- package/public/contentbuilder/plugins/wordcount/plugin.js +76 -76
- package/public/contentbuilder/plugins/wordcount/readme.txt +23 -23
- package/readme.txt +25 -25
|
@@ -1,338 +1,338 @@
|
|
|
1
|
-
var _txt = new Array();
|
|
2
|
-
_txt["Bold"] = "Bold";
|
|
3
|
-
_txt["Italic"] = "Italic";
|
|
4
|
-
_txt["Hyperlink"] = "Lien internet";
|
|
5
|
-
_txt["Align"] = "Alignement";
|
|
6
|
-
_txt["Paragraph"] = "Paragraphe";
|
|
7
|
-
_txt["Color"] = "Couleur";
|
|
8
|
-
_txt["Formatting"] = "Formatage";
|
|
9
|
-
_txt["List"] = "Liste";
|
|
10
|
-
_txt["Text Settings"] = "Paramètres texte";
|
|
11
|
-
_txt["Icon"] = "Icône";
|
|
12
|
-
_txt["Clean"] = "Clean";
|
|
13
|
-
_txt["Font"] = "Police de caractère";
|
|
14
|
-
_txt["Previous"] = "Précédent";
|
|
15
|
-
_txt["Next"] = "Suivant";
|
|
16
|
-
_txt["More"] = "Plus";
|
|
17
|
-
_txt["Move Up"] = "Vers le haut";
|
|
18
|
-
_txt["Move Down"] = "Vers le bas";
|
|
19
|
-
_txt["Move Left"] = "Vers la gauche";
|
|
20
|
-
_txt["Move Right"] = "Vers la droite";
|
|
21
|
-
_txt["Delete"] = "Effacer";
|
|
22
|
-
_txt["Add"] = "Ajouter";
|
|
23
|
-
_txt["Move"] = "Déplacer";
|
|
24
|
-
_txt["Duplicate"] = "Copier";
|
|
25
|
-
_txt["Decrease"] = "Diminuer";
|
|
26
|
-
_txt["Increase"] = "Augmenter";
|
|
27
|
-
_txt["HTML"] = "HTML";
|
|
28
|
-
_txt["Headline"] = "Titre";
|
|
29
|
-
_txt["Image"] = "Image";
|
|
30
|
-
_txt["Heading 1"] = "Titre 1";
|
|
31
|
-
_txt["Heading 2"] = "Titre 2";
|
|
32
|
-
_txt["Heading 3"] = "Titre 3";
|
|
33
|
-
_txt["Quote"] = "Quote";
|
|
34
|
-
_txt["Preformatted"] = "Preformaté";
|
|
35
|
-
_txt["Table"] = "Table";
|
|
36
|
-
_txt["Spacer"] = "Espace";
|
|
37
|
-
_txt["Horizontal Line"] = "Ligne horizontale";
|
|
38
|
-
_txt["More..."] = "Plus...";
|
|
39
|
-
_txt["Enlarge"] = "Agrandir";
|
|
40
|
-
_txt["Ok"] = "Ok";
|
|
41
|
-
_txt["Align Left"] = "Alignement à Gauche";
|
|
42
|
-
_txt["Align Center"] = "Alignement au Centre";
|
|
43
|
-
_txt["Align Right"] = "Alignement à Droite";
|
|
44
|
-
_txt["Align Full"] = "Justifier";
|
|
45
|
-
_txt["Bullets"] = "Boules";
|
|
46
|
-
_txt["Numbering"] = "Numbres";
|
|
47
|
-
_txt["Indent"] = "Indentation";
|
|
48
|
-
_txt["Outdent"] = "Outdent";
|
|
49
|
-
_txt["Heading 4"] = "Titre 4";
|
|
50
|
-
_txt["Underline"] = "Souligner";
|
|
51
|
-
_txt["Strikethrough"] = "Barrer";
|
|
52
|
-
_txt["Superscript"] = "Superscript";
|
|
53
|
-
_txt["Subscript"] = "Subscript";
|
|
54
|
-
_txt["Uppercase"] = "Majuscule";
|
|
55
|
-
_txt["Clear"] = "Effacer";
|
|
56
|
-
_txt["Choose.."] = "Choisir..";
|
|
57
|
-
_txt["Forecolor"] = "Couleur 1er plan";
|
|
58
|
-
_txt["Backcolor"] = "Couleur arrière plan";
|
|
59
|
-
_txt["Apply"] = "Appliquer";
|
|
60
|
-
_txt["Cancel"] = "Annuler";
|
|
61
|
-
_txt["Change Image"] = "Changer Image";
|
|
62
|
-
_txt["Link"] = "Lien";
|
|
63
|
-
_txt["Edit"] = "Editer";
|
|
64
|
-
_txt["Source"] = "Source";
|
|
65
|
-
_txt["Settings"] = "Paramètres";
|
|
66
|
-
_txt["Change Icon"] = "Changer Icône";
|
|
67
|
-
_txt["Edit Table"] = "Editer Table";
|
|
68
|
-
_txt["Select"] = "Selectionner";
|
|
69
|
-
_txt["Open new window"] = "Ouvrir nouvelle fenêtre";
|
|
70
|
-
_txt["Open New Window"] = "Ouvrir nouvelle fenêtre"; //not used (backward compatible)
|
|
71
|
-
_txt["Text"] = "Texte";
|
|
72
|
-
_txt["Title"] = "Titre";
|
|
73
|
-
_txt["Free"] = "Free";
|
|
74
|
-
_txt["Style"] = "Style";
|
|
75
|
-
_txt["Layout"] = "Disposition";
|
|
76
|
-
_txt["Background"] = "Fond";
|
|
77
|
-
_txt["Select Color"] = "Selectionner Couleur";
|
|
78
|
-
_txt["Text Color"] = "Couleur Texte";
|
|
79
|
-
_txt["Border Thickness"] = "Epaisseur Bordure";
|
|
80
|
-
_txt["Border Color"] = "Couleur Bordure";
|
|
81
|
-
_txt["Apply To"] = "Appliquer à";
|
|
82
|
-
_txt["Current Row"] = "Ligne en cours";
|
|
83
|
-
_txt["Current Column"] = "Colonne en cours";
|
|
84
|
-
_txt["Even Rows"] = "Lignes paires";
|
|
85
|
-
_txt["Odd Rows"] = "Lignes impaires";
|
|
86
|
-
_txt["Current Cell"] = "Cellule sélectionnée";
|
|
87
|
-
_txt["Insert Row"] = "Insérer ligne";
|
|
88
|
-
_txt["Insert Column"] = "Insérer colonne";
|
|
89
|
-
_txt["Delete Row"] = "Delete Row";
|
|
90
|
-
_txt["Delete Column"] = "Delete Column";
|
|
91
|
-
_txt["Above"] = "Au-dessus";
|
|
92
|
-
_txt["Below"] = "En-dessous";
|
|
93
|
-
_txt["Left"] = "Gauche";
|
|
94
|
-
_txt["Right"] = "Droite";
|
|
95
|
-
_txt["Row"] = "Ligne";
|
|
96
|
-
_txt["Column"] = "Colonne";
|
|
97
|
-
_txt["Merge"] = "Fusionner";
|
|
98
|
-
_txt["Merge Cell"] = "Fusionner cellules";
|
|
99
|
-
_txt["css"] = "css";
|
|
100
|
-
_txt["Class"] = "Class";
|
|
101
|
-
_txt["Box"] = "Box";
|
|
102
|
-
_txt["Spacing"] = "Espacement";
|
|
103
|
-
_txt["Border"] = "Bordure";
|
|
104
|
-
_txt["Corners"] = "Coins";
|
|
105
|
-
_txt["Shadow"] = "Ombre";
|
|
106
|
-
_txt["Display"] = "Affichage";
|
|
107
|
-
_txt["Position"] = "Position";
|
|
108
|
-
_txt["Effects"] = "Effets";
|
|
109
|
-
_txt["Attributes"] = "Attribus";
|
|
110
|
-
_txt["Animation"] = "Animation";
|
|
111
|
-
_txt["Background Color"] = "Couleur de fond";
|
|
112
|
-
_txt["Gradient"] = "Gradient";
|
|
113
|
-
_txt["Dimension"] = "Dimension";
|
|
114
|
-
_txt["Responsive Positioning"] = "Positionnement responsif";
|
|
115
|
-
_txt["Reset margin left on small screen"] = "Reset marge de gauche sur petit écran";
|
|
116
|
-
_txt["Reset margin right on small screen"] = "Reset marge de droite sur petit écran";
|
|
117
|
-
_txt["Individual Sides"] = "Individual Sides";
|
|
118
|
-
_txt["Select Font"] = "Selectionner Police de caractère";
|
|
119
|
-
_txt["Animate"] = "Animer";
|
|
120
|
-
_txt["Delay"] = "Retard";
|
|
121
|
-
_txt["Duration"] = "Durée";
|
|
122
|
-
_txt["Animate Once"] = "Animer une fois";
|
|
123
|
-
_txt["Test"] = "Teste";
|
|
124
|
-
_txt["TEST"] = "TESTE";
|
|
125
|
-
_txt["Custom"] = "Custom";
|
|
126
|
-
_txt["Module Settings"] = "Paramètres module";
|
|
127
|
-
_txt["Drag and drop an image or click to browse."] = "Glisser - déposer une image ou cliquer pour parcourir.";
|
|
128
|
-
_txt["Are you sure you want to delete this block?"] = "Etes vous sûre de vouloir effacer ce block ?";
|
|
129
|
-
_txt["Back"] = "Retour";
|
|
130
|
-
_txt["Or Specify Image Source"] = "Ou spécifier Image Source";
|
|
131
|
-
_txt["Preferences"] = "Préférences";
|
|
132
|
-
_txt["Hide element tool"] = "Masquer outil élément";
|
|
133
|
-
_txt["Hide column tool"] = "Masquer outil colonne";
|
|
134
|
-
_txt["Line"] = "Ligne";
|
|
135
|
-
_txt["Hide column HTML editor"] = "Masquer éditeur HTML de colonne";
|
|
136
|
-
_txt["Hide row HTML editor"] = "Masquer éditeur HTML de ligne";
|
|
137
|
-
_txt["Hide row move (up/down) buttons"] = "Masquer boutons de déplacement de ligne (haut/bas)";
|
|
138
|
-
_txt["HTML syntax highlighting"] = "syntaxe HTML colorisé";
|
|
139
|
-
_txt["Scrollable Editing Toolbar"] = "Barre d'outils Scrollable";
|
|
140
|
-
_txt["Toolbar position"] = "Position Barre d'outils";
|
|
141
|
-
_txt["Top"] = "Top";
|
|
142
|
-
_txt["Toolbar visibility"] = "Visibilité barre d'outils";
|
|
143
|
-
_txt["Auto"] = "Auto";
|
|
144
|
-
_txt["Always Visible"] = "Toujours Visible";
|
|
145
|
-
_txt["Paste result"] = "Coller résultat";
|
|
146
|
-
_txt["HTML (without styles)"] = "HTML (sans styles)";
|
|
147
|
-
_txt["HTML (with styles)"] = "HTML (avec styles)";
|
|
148
|
-
_txt["Text only"] = "Texte seulement";
|
|
149
|
-
_txt["Add Snippet"] = "Ajouter Module";
|
|
150
|
-
_txt["Grid Tool"] = "Outil grille";
|
|
151
|
-
_txt["Element Tool"] = "Outil Elément";
|
|
152
|
-
_txt["Builder Mode"] = "Mode Builder";
|
|
153
|
-
_txt["Default"] = "Défaut";
|
|
154
|
-
_txt["Minimal"] = "Minimal";
|
|
155
|
-
_txt["Hide outline"] = "Masquer contour";
|
|
156
|
-
_txt["Hide element highlight"] = "Masquer élément surbrillance";
|
|
157
|
-
_txt["Row tool position"] = "Outil position ligne";
|
|
158
|
-
_txt["Add (+) button placement"] = "Ajouter (+) emplacement bouton";
|
|
159
|
-
_txt["Between Blocks (left)"] = "Entre Blocks (gauche)";
|
|
160
|
-
_txt["Between Blocks (center)"] = "Entre Blocks (centré)";
|
|
161
|
-
_txt["Outline Mode"] = "Mode Contour";
|
|
162
|
-
_txt["Row & column"] = "Ligne & colonne";
|
|
163
|
-
_txt["Row only"] = "Ligne seulement";
|
|
164
|
-
_txt["Draggable blocks without handle"] = "Déplacement des blocks sans poignée";
|
|
165
|
-
_txt["Animated drag to sort"] = "Animation Glisser-déposer de tri";
|
|
166
|
-
_txt["Open snippets sidebar on start"] = "Ouvrir barre de modules au démarrage";
|
|
167
|
-
_txt["Scrollable toolbar (top only)"] = "Barre d'outils Scrollable (top seulement)";
|
|
168
|
-
_txt["Please select a block"] = "Merci de sélectionner un block";
|
|
169
|
-
_txt["Open snippet sidebar on start"] = "Ouvrir barre de modules au démarrage";
|
|
170
|
-
_txt["Hide snippet handle"] = "Masquer poignée du module";
|
|
171
|
-
_txt["Undo"] = "Annuler";
|
|
172
|
-
_txt["Redo"] = "Refaire";
|
|
173
|
-
_txt["Empty"] = "Vider";
|
|
174
|
-
_txt["+ Click to add content"] = "+ Click pour ajouter du contenu";
|
|
175
|
-
_txt["B"] = "B";
|
|
176
|
-
_txt["W"] = "W";
|
|
177
|
-
_txt["Outline Style"] = "Style de contour";
|
|
178
|
-
_txt["Colored"] = "Coloré";
|
|
179
|
-
_txt["Gray"] = "Gris";
|
|
180
|
-
_txt["Hide Outline"] = "Masquer contour";
|
|
181
|
-
_txt["Hide Column Tool"] = "Masquer outil de colonne";
|
|
182
|
-
_txt["Row Tool Position"] = "Outil position de ligne";
|
|
183
|
-
_txt["Tool Style"] = "Outil de style";
|
|
184
|
-
_txt["Hide Snippet (+) Tool"] = "Masquer Outil de module (+)";
|
|
185
|
-
_txt["Tool Outline"] = "Contour de module";
|
|
186
|
-
_txt["Button"] = "Bouton";
|
|
187
|
-
_txt["Button Editor"] = "Editeur de bouton";
|
|
188
|
-
_txt["Edit Button"] = "Editer Bouton";
|
|
189
|
-
_txt["Grid Editor"] = "Editeur de grille";
|
|
190
|
-
_txt["Outline"] = "Contour";
|
|
191
|
-
_txt["Font Size"] = "Taille Police de caractère";
|
|
192
|
-
_txt["Line Spacing"] = "Espacement de ligne";
|
|
193
|
-
_txt["Letter Spacing"] = "Espacement de caractère";
|
|
194
|
-
_txt["Close"] = "Fermer";
|
|
195
|
-
_txt["Search & Replace"] = "Chercher & remplacer";
|
|
196
|
-
_txt["Word Count"] = "Compteur de mots";
|
|
197
|
-
_txt["words"] = "words";
|
|
198
|
-
_txt["Characters"] = "Characters";
|
|
199
|
-
_txt["Characters (no spaces)"] = "Characters (no spaces)";
|
|
200
|
-
_txt["Add to Left"] = "Ajouter à gauche";
|
|
201
|
-
_txt["Add to Right"] = "Ajouter à droite";
|
|
202
|
-
_txt["Border Top Color"] = "Couleur de bordure haute";
|
|
203
|
-
_txt["Border Bottom Color"] = "Couleur de bordure basse";
|
|
204
|
-
_txt["Border Left Color"] = "Couleur de bordure gauche";
|
|
205
|
-
_txt["Border Right Color"] = "Couleur de bordure droite";
|
|
206
|
-
_txt["Snippets sidebar visibility"] = "Visibilité Barre de modules";
|
|
207
|
-
_txt["You have reached the maximum number of columns"] = "You have reached the maximum number of columns";
|
|
208
|
-
_txt["Width"] = "Width";
|
|
209
|
-
_txt["Height"] = "Height";
|
|
210
|
-
_txt["Names"] = "Names";
|
|
211
|
-
_txt["Values"] = "Values";
|
|
212
|
-
_txt["Border Top"] = "Border Top";
|
|
213
|
-
_txt["Border Bottom"] = "Border Bottom";
|
|
214
|
-
_txt["Border Left"] = "Border Left";
|
|
215
|
-
_txt["Border Right"] = "Border Right";
|
|
216
|
-
_txt["Individual Corners"] = "Individual Corners";
|
|
217
|
-
_txt["Top Left"] = "Top Left";
|
|
218
|
-
_txt["Top Right"] = "Top Right";
|
|
219
|
-
_txt["Bottom Left"] = "Bottom Left";
|
|
220
|
-
_txt["Bottom Right"] = "Bottom Right";
|
|
221
|
-
_txt["Flex"] = "Flex";
|
|
222
|
-
_txt["Direction"] = "Direction";
|
|
223
|
-
_txt["Wrap"] = "Wrap";
|
|
224
|
-
_txt["Justify Content"] = "Justify Content";
|
|
225
|
-
_txt["Align Items"] = "Align Items";
|
|
226
|
-
_txt["Align Content"] = "Align Content";
|
|
227
|
-
_txt["Opacity"] = "Opacity";
|
|
228
|
-
_txt["Filters"] = "Filters";
|
|
229
|
-
_txt["Blur"] = "Blur";
|
|
230
|
-
_txt["Brightness"] = "Brightness";
|
|
231
|
-
_txt["Contrast"] = "Contrast";
|
|
232
|
-
_txt["Grayscale"] = "Grayscale";
|
|
233
|
-
_txt["Hue Rotate"] = "Hue Rotate";
|
|
234
|
-
_txt["Invert"] = "Invert";
|
|
235
|
-
_txt["Saturate"] = "Saturate";
|
|
236
|
-
_txt["Sepia"] = "Sepia";
|
|
237
|
-
_txt["Bottom"] = "Bottom";
|
|
238
|
-
_txt["Float"] = "Float";
|
|
239
|
-
_txt["x Offset"] = "x Offset";
|
|
240
|
-
_txt["y Offset"] = "y Offset";
|
|
241
|
-
_txt["Spread"] = "Spread";
|
|
242
|
-
_txt["Shadow Color"] = "Shadow Color";
|
|
243
|
-
_txt["Outer/Inner Shadow"] = "Outer/Inner Shadow";
|
|
244
|
-
_txt["Margin"] = "Margin";
|
|
245
|
-
_txt["Padding"] = "Padding";
|
|
246
|
-
_txt["Text Align"] = "Text Align";
|
|
247
|
-
_txt["Center"] = "Center";
|
|
248
|
-
_txt["Full"] = "Full";
|
|
249
|
-
_txt["Line Height"] = "Line Height";
|
|
250
|
-
_txt["Font Weight"] = "Font Weight";
|
|
251
|
-
_txt["Font Style"] = "Font Style";
|
|
252
|
-
_txt["Text Transform"] = "Text Transform";
|
|
253
|
-
_txt["Text Decoration"] = "Text Decoration";
|
|
254
|
-
_txt["Word Spacing"] = "Word Spacing";
|
|
255
|
-
_txt["Font Family"] = "Font Family";
|
|
256
|
-
_txt["Normal"] = "Normal";
|
|
257
|
-
_txt["Lowercase"] = "Lowercase";
|
|
258
|
-
_txt["Capitalize"] = "Capitalize";
|
|
259
|
-
_txt["None"] = "None";
|
|
260
|
-
_txt["Underline"] = "Underline";
|
|
261
|
-
_txt["Line Through"] = "Line Through";
|
|
262
|
-
_txt["Overline"] = "Overline";
|
|
263
|
-
_txt["Hover"] = "Hover";
|
|
264
|
-
_txt["Saved"] = "Saved";
|
|
265
|
-
_txt["Templates"] = "Templates";
|
|
266
|
-
_txt["No Border"] = "No Border";
|
|
267
|
-
_txt["Border Radius"] = "Border Radius";
|
|
268
|
-
_txt["Button Size"] = "Button Size";
|
|
269
|
-
_txt["Upper/lower"] = "Upper/lower";
|
|
270
|
-
_txt["Weight"] = "Weight";
|
|
271
|
-
_txt["Save Current Button"] = "Save Current Button";
|
|
272
|
-
_txt["Tags"] = "Tags";
|
|
273
|
-
_txt["Snippet"] = "Snippet";
|
|
274
|
-
_txt["Mono"] = "Mono";
|
|
275
|
-
_txt["Zoom"] = "Zoom";
|
|
276
|
-
_txt["Set theme"] = "Set theme";
|
|
277
|
-
_txt["Open in a lightbox (for image, video or Youtube)"] = "Open in a lightbox (for image, video or Youtube)";
|
|
278
|
-
_txt["Column Settings"] = "Column Settings";
|
|
279
|
-
_txt["Lock"] = "Lock";
|
|
280
|
-
_txt["General"] = "General";
|
|
281
|
-
_txt["Content"] = "Content";
|
|
282
|
-
_txt["On Click"] = "On Click";
|
|
283
|
-
_txt["Background Image"] = "Background Image";
|
|
284
|
-
_txt["Adjust"] = "Adjust";
|
|
285
|
-
_txt["Dark"] = "Dark";
|
|
286
|
-
_txt["Light"] = "Light";
|
|
287
|
-
_txt["Enlarge Row"] = "Enlarge Row";
|
|
288
|
-
_txt["Content Alignment"] = "Content Alignment";
|
|
289
|
-
_txt["Top Center"] = "Top Center";
|
|
290
|
-
_txt["Bottom Center"] = "Bottom Center";
|
|
291
|
-
_txt["Center Left"] = "Center Left";
|
|
292
|
-
_txt["Center Right"] = "Center Right";
|
|
293
|
-
_txt["Open"] = "Open";
|
|
294
|
-
_txt["Background Image Adjustments"] = "Background Image Adjustments";
|
|
295
|
-
_txt["Scale"] = "Scale";
|
|
296
|
-
_txt["Horizontal"] = "Horizontal";
|
|
297
|
-
_txt["Vertical"] = "Vertical";
|
|
298
|
-
_txt["Do you really want to leave?"] = "Do you really want to leave?";
|
|
299
|
-
_txt["Two Button"] = "Two Button";
|
|
300
|
-
_txt["Youtube"] = "Youtube";
|
|
301
|
-
_txt["Video"] = "Video";
|
|
302
|
-
_txt["Map"] = "Map";
|
|
303
|
-
_txt["Show Controls"] = "Show Controls";
|
|
304
|
-
_txt["Loop"] = "Loop";
|
|
305
|
-
_txt["Autoplay"] = "Autoplay";
|
|
306
|
-
_txt["Please select an image or video file."] = "Please select an image or video file.";
|
|
307
|
-
_txt["Please select an image file."] = "Please select an image file.";
|
|
308
|
-
_txt["Please select an mp4 file."] = "Please select an mp4 file.";
|
|
309
|
-
_txt["Social Links"] = "Social Links";
|
|
310
|
-
_txt["HTML/JS"] = "HTML/JS";
|
|
311
|
-
_txt["Drag image to change the position. Click image to edit the details."] = "Drag image to change the position. Click image to edit the details.";
|
|
312
|
-
_txt["Add Image"] = "Add Image";
|
|
313
|
-
_txt["Fit"] = "Fit";
|
|
314
|
-
_txt["Type"] = "Type";
|
|
315
|
-
_txt["Animation duration"] = "Animation duration";
|
|
316
|
-
_txt["Per View"] = "Per View";
|
|
317
|
-
_txt["Gap"] = "Gap";
|
|
318
|
-
_txt["Arrow Navigation"] = "Arrow Navigation";
|
|
319
|
-
_txt["Dots Navigation"] = "Dots Navigation";
|
|
320
|
-
_txt["Fade"] = "Fade";
|
|
321
|
-
_txt["Caption (HTML allowed)"] = "Caption (HTML allowed)";
|
|
322
|
-
_txt["Placement"] = "Placement";
|
|
323
|
-
_txt["Max Width"] = "Max Width";
|
|
324
|
-
_txt["You can test the On-Click action on page if you lock the column by clicking the lock button"] = "You can test the On-Click action on page if you lock the column by clicking the lock button";
|
|
325
|
-
_txt["Remove"] = "Remove";
|
|
326
|
-
_txt["All"] = "All";
|
|
327
|
-
_txt["Transparent"] = "Transparent";
|
|
328
|
-
_txt["Current"] = "Current";
|
|
329
|
-
_txt["Padding X"] = "Padding X";
|
|
330
|
-
_txt["Padding Y"] = "Padding Y";
|
|
331
|
-
_txt["SM"] = "SM";
|
|
332
|
-
_txt["MD"] = "MD";
|
|
333
|
-
_txt["LG"] = "LG";
|
|
334
|
-
_txt["XL"] = "XL";
|
|
335
|
-
_txt["2XL"] = "2XL";
|
|
336
|
-
_txt["3XL"] = "3XL";
|
|
337
|
-
_txt["Margin Left"] = "Margin Left";
|
|
1
|
+
var _txt = new Array();
|
|
2
|
+
_txt["Bold"] = "Bold";
|
|
3
|
+
_txt["Italic"] = "Italic";
|
|
4
|
+
_txt["Hyperlink"] = "Lien internet";
|
|
5
|
+
_txt["Align"] = "Alignement";
|
|
6
|
+
_txt["Paragraph"] = "Paragraphe";
|
|
7
|
+
_txt["Color"] = "Couleur";
|
|
8
|
+
_txt["Formatting"] = "Formatage";
|
|
9
|
+
_txt["List"] = "Liste";
|
|
10
|
+
_txt["Text Settings"] = "Paramètres texte";
|
|
11
|
+
_txt["Icon"] = "Icône";
|
|
12
|
+
_txt["Clean"] = "Clean";
|
|
13
|
+
_txt["Font"] = "Police de caractère";
|
|
14
|
+
_txt["Previous"] = "Précédent";
|
|
15
|
+
_txt["Next"] = "Suivant";
|
|
16
|
+
_txt["More"] = "Plus";
|
|
17
|
+
_txt["Move Up"] = "Vers le haut";
|
|
18
|
+
_txt["Move Down"] = "Vers le bas";
|
|
19
|
+
_txt["Move Left"] = "Vers la gauche";
|
|
20
|
+
_txt["Move Right"] = "Vers la droite";
|
|
21
|
+
_txt["Delete"] = "Effacer";
|
|
22
|
+
_txt["Add"] = "Ajouter";
|
|
23
|
+
_txt["Move"] = "Déplacer";
|
|
24
|
+
_txt["Duplicate"] = "Copier";
|
|
25
|
+
_txt["Decrease"] = "Diminuer";
|
|
26
|
+
_txt["Increase"] = "Augmenter";
|
|
27
|
+
_txt["HTML"] = "HTML";
|
|
28
|
+
_txt["Headline"] = "Titre";
|
|
29
|
+
_txt["Image"] = "Image";
|
|
30
|
+
_txt["Heading 1"] = "Titre 1";
|
|
31
|
+
_txt["Heading 2"] = "Titre 2";
|
|
32
|
+
_txt["Heading 3"] = "Titre 3";
|
|
33
|
+
_txt["Quote"] = "Quote";
|
|
34
|
+
_txt["Preformatted"] = "Preformaté";
|
|
35
|
+
_txt["Table"] = "Table";
|
|
36
|
+
_txt["Spacer"] = "Espace";
|
|
37
|
+
_txt["Horizontal Line"] = "Ligne horizontale";
|
|
38
|
+
_txt["More..."] = "Plus...";
|
|
39
|
+
_txt["Enlarge"] = "Agrandir";
|
|
40
|
+
_txt["Ok"] = "Ok";
|
|
41
|
+
_txt["Align Left"] = "Alignement à Gauche";
|
|
42
|
+
_txt["Align Center"] = "Alignement au Centre";
|
|
43
|
+
_txt["Align Right"] = "Alignement à Droite";
|
|
44
|
+
_txt["Align Full"] = "Justifier";
|
|
45
|
+
_txt["Bullets"] = "Boules";
|
|
46
|
+
_txt["Numbering"] = "Numbres";
|
|
47
|
+
_txt["Indent"] = "Indentation";
|
|
48
|
+
_txt["Outdent"] = "Outdent";
|
|
49
|
+
_txt["Heading 4"] = "Titre 4";
|
|
50
|
+
_txt["Underline"] = "Souligner";
|
|
51
|
+
_txt["Strikethrough"] = "Barrer";
|
|
52
|
+
_txt["Superscript"] = "Superscript";
|
|
53
|
+
_txt["Subscript"] = "Subscript";
|
|
54
|
+
_txt["Uppercase"] = "Majuscule";
|
|
55
|
+
_txt["Clear"] = "Effacer";
|
|
56
|
+
_txt["Choose.."] = "Choisir..";
|
|
57
|
+
_txt["Forecolor"] = "Couleur 1er plan";
|
|
58
|
+
_txt["Backcolor"] = "Couleur arrière plan";
|
|
59
|
+
_txt["Apply"] = "Appliquer";
|
|
60
|
+
_txt["Cancel"] = "Annuler";
|
|
61
|
+
_txt["Change Image"] = "Changer Image";
|
|
62
|
+
_txt["Link"] = "Lien";
|
|
63
|
+
_txt["Edit"] = "Editer";
|
|
64
|
+
_txt["Source"] = "Source";
|
|
65
|
+
_txt["Settings"] = "Paramètres";
|
|
66
|
+
_txt["Change Icon"] = "Changer Icône";
|
|
67
|
+
_txt["Edit Table"] = "Editer Table";
|
|
68
|
+
_txt["Select"] = "Selectionner";
|
|
69
|
+
_txt["Open new window"] = "Ouvrir nouvelle fenêtre";
|
|
70
|
+
_txt["Open New Window"] = "Ouvrir nouvelle fenêtre"; //not used (backward compatible)
|
|
71
|
+
_txt["Text"] = "Texte";
|
|
72
|
+
_txt["Title"] = "Titre";
|
|
73
|
+
_txt["Free"] = "Free";
|
|
74
|
+
_txt["Style"] = "Style";
|
|
75
|
+
_txt["Layout"] = "Disposition";
|
|
76
|
+
_txt["Background"] = "Fond";
|
|
77
|
+
_txt["Select Color"] = "Selectionner Couleur";
|
|
78
|
+
_txt["Text Color"] = "Couleur Texte";
|
|
79
|
+
_txt["Border Thickness"] = "Epaisseur Bordure";
|
|
80
|
+
_txt["Border Color"] = "Couleur Bordure";
|
|
81
|
+
_txt["Apply To"] = "Appliquer à";
|
|
82
|
+
_txt["Current Row"] = "Ligne en cours";
|
|
83
|
+
_txt["Current Column"] = "Colonne en cours";
|
|
84
|
+
_txt["Even Rows"] = "Lignes paires";
|
|
85
|
+
_txt["Odd Rows"] = "Lignes impaires";
|
|
86
|
+
_txt["Current Cell"] = "Cellule sélectionnée";
|
|
87
|
+
_txt["Insert Row"] = "Insérer ligne";
|
|
88
|
+
_txt["Insert Column"] = "Insérer colonne";
|
|
89
|
+
_txt["Delete Row"] = "Delete Row";
|
|
90
|
+
_txt["Delete Column"] = "Delete Column";
|
|
91
|
+
_txt["Above"] = "Au-dessus";
|
|
92
|
+
_txt["Below"] = "En-dessous";
|
|
93
|
+
_txt["Left"] = "Gauche";
|
|
94
|
+
_txt["Right"] = "Droite";
|
|
95
|
+
_txt["Row"] = "Ligne";
|
|
96
|
+
_txt["Column"] = "Colonne";
|
|
97
|
+
_txt["Merge"] = "Fusionner";
|
|
98
|
+
_txt["Merge Cell"] = "Fusionner cellules";
|
|
99
|
+
_txt["css"] = "css";
|
|
100
|
+
_txt["Class"] = "Class";
|
|
101
|
+
_txt["Box"] = "Box";
|
|
102
|
+
_txt["Spacing"] = "Espacement";
|
|
103
|
+
_txt["Border"] = "Bordure";
|
|
104
|
+
_txt["Corners"] = "Coins";
|
|
105
|
+
_txt["Shadow"] = "Ombre";
|
|
106
|
+
_txt["Display"] = "Affichage";
|
|
107
|
+
_txt["Position"] = "Position";
|
|
108
|
+
_txt["Effects"] = "Effets";
|
|
109
|
+
_txt["Attributes"] = "Attribus";
|
|
110
|
+
_txt["Animation"] = "Animation";
|
|
111
|
+
_txt["Background Color"] = "Couleur de fond";
|
|
112
|
+
_txt["Gradient"] = "Gradient";
|
|
113
|
+
_txt["Dimension"] = "Dimension";
|
|
114
|
+
_txt["Responsive Positioning"] = "Positionnement responsif";
|
|
115
|
+
_txt["Reset margin left on small screen"] = "Reset marge de gauche sur petit écran";
|
|
116
|
+
_txt["Reset margin right on small screen"] = "Reset marge de droite sur petit écran";
|
|
117
|
+
_txt["Individual Sides"] = "Individual Sides";
|
|
118
|
+
_txt["Select Font"] = "Selectionner Police de caractère";
|
|
119
|
+
_txt["Animate"] = "Animer";
|
|
120
|
+
_txt["Delay"] = "Retard";
|
|
121
|
+
_txt["Duration"] = "Durée";
|
|
122
|
+
_txt["Animate Once"] = "Animer une fois";
|
|
123
|
+
_txt["Test"] = "Teste";
|
|
124
|
+
_txt["TEST"] = "TESTE";
|
|
125
|
+
_txt["Custom"] = "Custom";
|
|
126
|
+
_txt["Module Settings"] = "Paramètres module";
|
|
127
|
+
_txt["Drag and drop an image or click to browse."] = "Glisser - déposer une image ou cliquer pour parcourir.";
|
|
128
|
+
_txt["Are you sure you want to delete this block?"] = "Etes vous sûre de vouloir effacer ce block ?";
|
|
129
|
+
_txt["Back"] = "Retour";
|
|
130
|
+
_txt["Or Specify Image Source"] = "Ou spécifier Image Source";
|
|
131
|
+
_txt["Preferences"] = "Préférences";
|
|
132
|
+
_txt["Hide element tool"] = "Masquer outil élément";
|
|
133
|
+
_txt["Hide column tool"] = "Masquer outil colonne";
|
|
134
|
+
_txt["Line"] = "Ligne";
|
|
135
|
+
_txt["Hide column HTML editor"] = "Masquer éditeur HTML de colonne";
|
|
136
|
+
_txt["Hide row HTML editor"] = "Masquer éditeur HTML de ligne";
|
|
137
|
+
_txt["Hide row move (up/down) buttons"] = "Masquer boutons de déplacement de ligne (haut/bas)";
|
|
138
|
+
_txt["HTML syntax highlighting"] = "syntaxe HTML colorisé";
|
|
139
|
+
_txt["Scrollable Editing Toolbar"] = "Barre d'outils Scrollable";
|
|
140
|
+
_txt["Toolbar position"] = "Position Barre d'outils";
|
|
141
|
+
_txt["Top"] = "Top";
|
|
142
|
+
_txt["Toolbar visibility"] = "Visibilité barre d'outils";
|
|
143
|
+
_txt["Auto"] = "Auto";
|
|
144
|
+
_txt["Always Visible"] = "Toujours Visible";
|
|
145
|
+
_txt["Paste result"] = "Coller résultat";
|
|
146
|
+
_txt["HTML (without styles)"] = "HTML (sans styles)";
|
|
147
|
+
_txt["HTML (with styles)"] = "HTML (avec styles)";
|
|
148
|
+
_txt["Text only"] = "Texte seulement";
|
|
149
|
+
_txt["Add Snippet"] = "Ajouter Module";
|
|
150
|
+
_txt["Grid Tool"] = "Outil grille";
|
|
151
|
+
_txt["Element Tool"] = "Outil Elément";
|
|
152
|
+
_txt["Builder Mode"] = "Mode Builder";
|
|
153
|
+
_txt["Default"] = "Défaut";
|
|
154
|
+
_txt["Minimal"] = "Minimal";
|
|
155
|
+
_txt["Hide outline"] = "Masquer contour";
|
|
156
|
+
_txt["Hide element highlight"] = "Masquer élément surbrillance";
|
|
157
|
+
_txt["Row tool position"] = "Outil position ligne";
|
|
158
|
+
_txt["Add (+) button placement"] = "Ajouter (+) emplacement bouton";
|
|
159
|
+
_txt["Between Blocks (left)"] = "Entre Blocks (gauche)";
|
|
160
|
+
_txt["Between Blocks (center)"] = "Entre Blocks (centré)";
|
|
161
|
+
_txt["Outline Mode"] = "Mode Contour";
|
|
162
|
+
_txt["Row & column"] = "Ligne & colonne";
|
|
163
|
+
_txt["Row only"] = "Ligne seulement";
|
|
164
|
+
_txt["Draggable blocks without handle"] = "Déplacement des blocks sans poignée";
|
|
165
|
+
_txt["Animated drag to sort"] = "Animation Glisser-déposer de tri";
|
|
166
|
+
_txt["Open snippets sidebar on start"] = "Ouvrir barre de modules au démarrage";
|
|
167
|
+
_txt["Scrollable toolbar (top only)"] = "Barre d'outils Scrollable (top seulement)";
|
|
168
|
+
_txt["Please select a block"] = "Merci de sélectionner un block";
|
|
169
|
+
_txt["Open snippet sidebar on start"] = "Ouvrir barre de modules au démarrage";
|
|
170
|
+
_txt["Hide snippet handle"] = "Masquer poignée du module";
|
|
171
|
+
_txt["Undo"] = "Annuler";
|
|
172
|
+
_txt["Redo"] = "Refaire";
|
|
173
|
+
_txt["Empty"] = "Vider";
|
|
174
|
+
_txt["+ Click to add content"] = "+ Click pour ajouter du contenu";
|
|
175
|
+
_txt["B"] = "B";
|
|
176
|
+
_txt["W"] = "W";
|
|
177
|
+
_txt["Outline Style"] = "Style de contour";
|
|
178
|
+
_txt["Colored"] = "Coloré";
|
|
179
|
+
_txt["Gray"] = "Gris";
|
|
180
|
+
_txt["Hide Outline"] = "Masquer contour";
|
|
181
|
+
_txt["Hide Column Tool"] = "Masquer outil de colonne";
|
|
182
|
+
_txt["Row Tool Position"] = "Outil position de ligne";
|
|
183
|
+
_txt["Tool Style"] = "Outil de style";
|
|
184
|
+
_txt["Hide Snippet (+) Tool"] = "Masquer Outil de module (+)";
|
|
185
|
+
_txt["Tool Outline"] = "Contour de module";
|
|
186
|
+
_txt["Button"] = "Bouton";
|
|
187
|
+
_txt["Button Editor"] = "Editeur de bouton";
|
|
188
|
+
_txt["Edit Button"] = "Editer Bouton";
|
|
189
|
+
_txt["Grid Editor"] = "Editeur de grille";
|
|
190
|
+
_txt["Outline"] = "Contour";
|
|
191
|
+
_txt["Font Size"] = "Taille Police de caractère";
|
|
192
|
+
_txt["Line Spacing"] = "Espacement de ligne";
|
|
193
|
+
_txt["Letter Spacing"] = "Espacement de caractère";
|
|
194
|
+
_txt["Close"] = "Fermer";
|
|
195
|
+
_txt["Search & Replace"] = "Chercher & remplacer";
|
|
196
|
+
_txt["Word Count"] = "Compteur de mots";
|
|
197
|
+
_txt["words"] = "words";
|
|
198
|
+
_txt["Characters"] = "Characters";
|
|
199
|
+
_txt["Characters (no spaces)"] = "Characters (no spaces)";
|
|
200
|
+
_txt["Add to Left"] = "Ajouter à gauche";
|
|
201
|
+
_txt["Add to Right"] = "Ajouter à droite";
|
|
202
|
+
_txt["Border Top Color"] = "Couleur de bordure haute";
|
|
203
|
+
_txt["Border Bottom Color"] = "Couleur de bordure basse";
|
|
204
|
+
_txt["Border Left Color"] = "Couleur de bordure gauche";
|
|
205
|
+
_txt["Border Right Color"] = "Couleur de bordure droite";
|
|
206
|
+
_txt["Snippets sidebar visibility"] = "Visibilité Barre de modules";
|
|
207
|
+
_txt["You have reached the maximum number of columns"] = "You have reached the maximum number of columns";
|
|
208
|
+
_txt["Width"] = "Width";
|
|
209
|
+
_txt["Height"] = "Height";
|
|
210
|
+
_txt["Names"] = "Names";
|
|
211
|
+
_txt["Values"] = "Values";
|
|
212
|
+
_txt["Border Top"] = "Border Top";
|
|
213
|
+
_txt["Border Bottom"] = "Border Bottom";
|
|
214
|
+
_txt["Border Left"] = "Border Left";
|
|
215
|
+
_txt["Border Right"] = "Border Right";
|
|
216
|
+
_txt["Individual Corners"] = "Individual Corners";
|
|
217
|
+
_txt["Top Left"] = "Top Left";
|
|
218
|
+
_txt["Top Right"] = "Top Right";
|
|
219
|
+
_txt["Bottom Left"] = "Bottom Left";
|
|
220
|
+
_txt["Bottom Right"] = "Bottom Right";
|
|
221
|
+
_txt["Flex"] = "Flex";
|
|
222
|
+
_txt["Direction"] = "Direction";
|
|
223
|
+
_txt["Wrap"] = "Wrap";
|
|
224
|
+
_txt["Justify Content"] = "Justify Content";
|
|
225
|
+
_txt["Align Items"] = "Align Items";
|
|
226
|
+
_txt["Align Content"] = "Align Content";
|
|
227
|
+
_txt["Opacity"] = "Opacity";
|
|
228
|
+
_txt["Filters"] = "Filters";
|
|
229
|
+
_txt["Blur"] = "Blur";
|
|
230
|
+
_txt["Brightness"] = "Brightness";
|
|
231
|
+
_txt["Contrast"] = "Contrast";
|
|
232
|
+
_txt["Grayscale"] = "Grayscale";
|
|
233
|
+
_txt["Hue Rotate"] = "Hue Rotate";
|
|
234
|
+
_txt["Invert"] = "Invert";
|
|
235
|
+
_txt["Saturate"] = "Saturate";
|
|
236
|
+
_txt["Sepia"] = "Sepia";
|
|
237
|
+
_txt["Bottom"] = "Bottom";
|
|
238
|
+
_txt["Float"] = "Float";
|
|
239
|
+
_txt["x Offset"] = "x Offset";
|
|
240
|
+
_txt["y Offset"] = "y Offset";
|
|
241
|
+
_txt["Spread"] = "Spread";
|
|
242
|
+
_txt["Shadow Color"] = "Shadow Color";
|
|
243
|
+
_txt["Outer/Inner Shadow"] = "Outer/Inner Shadow";
|
|
244
|
+
_txt["Margin"] = "Margin";
|
|
245
|
+
_txt["Padding"] = "Padding";
|
|
246
|
+
_txt["Text Align"] = "Text Align";
|
|
247
|
+
_txt["Center"] = "Center";
|
|
248
|
+
_txt["Full"] = "Full";
|
|
249
|
+
_txt["Line Height"] = "Line Height";
|
|
250
|
+
_txt["Font Weight"] = "Font Weight";
|
|
251
|
+
_txt["Font Style"] = "Font Style";
|
|
252
|
+
_txt["Text Transform"] = "Text Transform";
|
|
253
|
+
_txt["Text Decoration"] = "Text Decoration";
|
|
254
|
+
_txt["Word Spacing"] = "Word Spacing";
|
|
255
|
+
_txt["Font Family"] = "Font Family";
|
|
256
|
+
_txt["Normal"] = "Normal";
|
|
257
|
+
_txt["Lowercase"] = "Lowercase";
|
|
258
|
+
_txt["Capitalize"] = "Capitalize";
|
|
259
|
+
_txt["None"] = "None";
|
|
260
|
+
_txt["Underline"] = "Underline";
|
|
261
|
+
_txt["Line Through"] = "Line Through";
|
|
262
|
+
_txt["Overline"] = "Overline";
|
|
263
|
+
_txt["Hover"] = "Hover";
|
|
264
|
+
_txt["Saved"] = "Saved";
|
|
265
|
+
_txt["Templates"] = "Templates";
|
|
266
|
+
_txt["No Border"] = "No Border";
|
|
267
|
+
_txt["Border Radius"] = "Border Radius";
|
|
268
|
+
_txt["Button Size"] = "Button Size";
|
|
269
|
+
_txt["Upper/lower"] = "Upper/lower";
|
|
270
|
+
_txt["Weight"] = "Weight";
|
|
271
|
+
_txt["Save Current Button"] = "Save Current Button";
|
|
272
|
+
_txt["Tags"] = "Tags";
|
|
273
|
+
_txt["Snippet"] = "Snippet";
|
|
274
|
+
_txt["Mono"] = "Mono";
|
|
275
|
+
_txt["Zoom"] = "Zoom";
|
|
276
|
+
_txt["Set theme"] = "Set theme";
|
|
277
|
+
_txt["Open in a lightbox (for image, video or Youtube)"] = "Open in a lightbox (for image, video or Youtube)";
|
|
278
|
+
_txt["Column Settings"] = "Column Settings";
|
|
279
|
+
_txt["Lock"] = "Lock";
|
|
280
|
+
_txt["General"] = "General";
|
|
281
|
+
_txt["Content"] = "Content";
|
|
282
|
+
_txt["On Click"] = "On Click";
|
|
283
|
+
_txt["Background Image"] = "Background Image";
|
|
284
|
+
_txt["Adjust"] = "Adjust";
|
|
285
|
+
_txt["Dark"] = "Dark";
|
|
286
|
+
_txt["Light"] = "Light";
|
|
287
|
+
_txt["Enlarge Row"] = "Enlarge Row";
|
|
288
|
+
_txt["Content Alignment"] = "Content Alignment";
|
|
289
|
+
_txt["Top Center"] = "Top Center";
|
|
290
|
+
_txt["Bottom Center"] = "Bottom Center";
|
|
291
|
+
_txt["Center Left"] = "Center Left";
|
|
292
|
+
_txt["Center Right"] = "Center Right";
|
|
293
|
+
_txt["Open"] = "Open";
|
|
294
|
+
_txt["Background Image Adjustments"] = "Background Image Adjustments";
|
|
295
|
+
_txt["Scale"] = "Scale";
|
|
296
|
+
_txt["Horizontal"] = "Horizontal";
|
|
297
|
+
_txt["Vertical"] = "Vertical";
|
|
298
|
+
_txt["Do you really want to leave?"] = "Do you really want to leave?";
|
|
299
|
+
_txt["Two Button"] = "Two Button";
|
|
300
|
+
_txt["Youtube"] = "Youtube";
|
|
301
|
+
_txt["Video"] = "Video";
|
|
302
|
+
_txt["Map"] = "Map";
|
|
303
|
+
_txt["Show Controls"] = "Show Controls";
|
|
304
|
+
_txt["Loop"] = "Loop";
|
|
305
|
+
_txt["Autoplay"] = "Autoplay";
|
|
306
|
+
_txt["Please select an image or video file."] = "Please select an image or video file.";
|
|
307
|
+
_txt["Please select an image file."] = "Please select an image file.";
|
|
308
|
+
_txt["Please select an mp4 file."] = "Please select an mp4 file.";
|
|
309
|
+
_txt["Social Links"] = "Social Links";
|
|
310
|
+
_txt["HTML/JS"] = "HTML/JS";
|
|
311
|
+
_txt["Drag image to change the position. Click image to edit the details."] = "Drag image to change the position. Click image to edit the details.";
|
|
312
|
+
_txt["Add Image"] = "Add Image";
|
|
313
|
+
_txt["Fit"] = "Fit";
|
|
314
|
+
_txt["Type"] = "Type";
|
|
315
|
+
_txt["Animation duration"] = "Animation duration";
|
|
316
|
+
_txt["Per View"] = "Per View";
|
|
317
|
+
_txt["Gap"] = "Gap";
|
|
318
|
+
_txt["Arrow Navigation"] = "Arrow Navigation";
|
|
319
|
+
_txt["Dots Navigation"] = "Dots Navigation";
|
|
320
|
+
_txt["Fade"] = "Fade";
|
|
321
|
+
_txt["Caption (HTML allowed)"] = "Caption (HTML allowed)";
|
|
322
|
+
_txt["Placement"] = "Placement";
|
|
323
|
+
_txt["Max Width"] = "Max Width";
|
|
324
|
+
_txt["You can test the On-Click action on page if you lock the column by clicking the lock button"] = "You can test the On-Click action on page if you lock the column by clicking the lock button";
|
|
325
|
+
_txt["Remove"] = "Remove";
|
|
326
|
+
_txt["All"] = "All";
|
|
327
|
+
_txt["Transparent"] = "Transparent";
|
|
328
|
+
_txt["Current"] = "Current";
|
|
329
|
+
_txt["Padding X"] = "Padding X";
|
|
330
|
+
_txt["Padding Y"] = "Padding Y";
|
|
331
|
+
_txt["SM"] = "SM";
|
|
332
|
+
_txt["MD"] = "MD";
|
|
333
|
+
_txt["LG"] = "LG";
|
|
334
|
+
_txt["XL"] = "XL";
|
|
335
|
+
_txt["2XL"] = "2XL";
|
|
336
|
+
_txt["3XL"] = "3XL";
|
|
337
|
+
_txt["Margin Left"] = "Margin Left";
|
|
338
338
|
_txt["Margin Right"] = "Margin Right";
|