mce_langs.php
112 KB
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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
<?php
// *******
//
// Language Strings for Tinymce Addons
$strings = 'tinyMCE.addI18n({' . _WP_Editors::$mce_locale . ':{
acheck:{
desc: "' . esc_js( __( 'Accessibility Checker', 'jwl-ultimate-tinymce' ) ) . '"
},
advhr:{
desc: "' . esc_js( __( 'Advanced HR', 'jwl-ultimate-tinymce' ) ) . '",
advhr_desc: "' . esc_js( __( 'Horizontal Rule', 'jwl-ultimate-tinymce' ) ) . '"
},
advhr_dlg:{
width: "' . esc_js( __( 'Width', 'jwl-ultimate-tinymce' ) ) . '",
height: "' . esc_js( __( 'Height', 'jwl-ultimate-tinymce' ) ) . '",
widthunits: "' . esc_js( __( 'Units', 'jwl-ultimate-tinymce' ) ) . '",
size: "' . esc_js( __( 'Height', 'jwl-ultimate-tinymce' ) ) . '",
normal: "' . esc_js( __( 'Normal', 'jwl-ultimate-tinymce' ) ) . '",
noshade: "' . esc_js( __( 'No Shadow', 'jwl-ultimate-tinymce' ) ) . '"
},
advlink:{
link_desc: "' . esc_js( __( 'Insert/Edit Advanced Link', 'jwl-ultimate-tinymce' ) ) . '"
},
advlink_dlg:{
title: "' . esc_js( __( 'Insert/Edit Advanced Link', 'jwl-ultimate-tinymce' ) ) . '",
general_tab: "' . esc_js( __( 'General', 'jwl-ultimate-tinymce' ) ) . '",
popup_tab: "' . esc_js( __( 'Popup', 'jwl-ultimate-tinymce' ) ) . '",
events_tab: "' . esc_js( __( 'Events', 'jwl-ultimate-tinymce' ) ) . '",
advanced_tab: "' . esc_js( __( 'Advanced', 'jwl-ultimate-tinymce' ) ) . '",
general_props: "' . esc_js( __( 'Events', 'jwl-ultimate-tinymce' ) ) . '",
url: "' . esc_js( __( 'Link URL', 'jwl-ultimate-tinymce' ) ) . '",
is_external: "' . esc_js( __( 'The URL you entered seems to be an external link. Do you want to add the required http:// prefix?', 'jwl-ultimate-tinymce' ) ) . '",
list: "' . esc_js( __( 'Link List', 'jwl-ultimate-tinymce' ) ) . '",
anchor_names: "' . esc_js( __( 'Anchors', 'jwl-ultimate-tinymce' ) ) . '",
target: "' . esc_js( __( 'Target', 'jwl-ultimate-tinymce' ) ) . '",
target_blank: "' . esc_js( __( 'Open in New Window', 'jwl-ultimate-tinymce' ) ) . '",
target_top: "' . esc_js( __( 'Open in Top Frame (Replaces All Frames)', 'jwl-ultimate-tinymce' ) ) . '",
target_parent: "' . esc_js( __( 'Open in Parent Window/Frame', 'jwl-ultimate-tinymce' ) ) . '",
target_same: "' . esc_js( __( 'Open in This Window/Frame', 'jwl-ultimate-tinymce' ) ) . '",
titlefield: "' . esc_js( __( 'Title', 'jwl-ultimate-tinymce' ) ) . '",
popup_props: "' . esc_js( __( 'Popup Properties', 'jwl-ultimate-tinymce' ) ) . '",
popup: "' . esc_js( __( 'JavaScript Popup', 'jwl-ultimate-tinymce' ) ) . '",
popup_url: "' . esc_js( __( 'Popup URL', 'jwl-ultimate-tinymce' ) ) . '",
popup_name: "' . esc_js( __( 'Window Name', 'jwl-ultimate-tinymce' ) ) . '",
popup_size: "' . esc_js( __( 'Size', 'jwl-ultimate-tinymce' ) ) . '",
width: "' . esc_js( __( 'Width', 'jwl-ultimate-tinymce' ) ) . '",
height: "' . esc_js( __( 'Height', 'jwl-ultimate-tinymce' ) ) . '",
popup_position: "' . esc_js( __( 'Position (X/Y)', 'jwl-ultimate-tinymce' ) ) . '",
popup_opts: "' . esc_js( __( 'Options', 'jwl-ultimate-tinymce' ) ) . '",
popup_location: "' . esc_js( __( 'Show Location Bar', 'jwl-ultimate-tinymce' ) ) . '",
popup_scrollbars: "' . esc_js( __( 'Show Scrollbars', 'jwl-ultimate-tinymce' ) ) . '",
popup_menubar: "' . esc_js( __( 'Show Menu Bar', 'jwl-ultimate-tinymce' ) ) . '",
popup_resizable: "' . esc_js( __( 'Make Window Resizable', 'jwl-ultimate-tinymce' ) ) . '",
popup_toolbar: "' . esc_js( __( 'Show Toolbars', 'jwl-ultimate-tinymce' ) ) . '",
popup_dependent: "' . esc_js( __( 'Dependent (Mozilla/Firefox Only)', 'jwl-ultimate-tinymce' ) ) . '",
popup_statusbar: "' . esc_js( __( 'Show Status Bar', 'jwl-ultimate-tinymce' ) ) . '",
popup_return: "' . esc_js( __( 'Insert \'return false\'', 'jwl-ultimate-tinymce' ) ) . '",
popup_return: "' . esc_js( __( 'Insert \'return false\'', 'jwl-ultimate-tinymce' ) ) . '",
advanced_props: "' . esc_js( __( 'Advanced Properties', 'jwl-ultimate-tinymce' ) ) . '",
id: "' . esc_js( __( 'ID', 'jwl-ultimate-tinymce' ) ) . '",
style: "' . esc_js( __( 'Style', 'jwl-ultimate-tinymce' ) ) . '",
classes: "' . esc_js( __( 'Classes', 'jwl-ultimate-tinymce' ) ) . '",
target_name: "' . esc_js( __( 'Target Name', 'jwl-ultimate-tinymce' ) ) . '",
langdir: "' . esc_js( __( 'Language Direction', 'jwl-ultimate-tinymce' ) ) . '",
ltr: "' . esc_js( __( 'Left to Right', 'jwl-ultimate-tinymce' ) ) . '",
rtl: "' . esc_js( __( 'Right to Left', 'jwl-ultimate-tinymce' ) ) . '",
target_langcode: "' . esc_js( __( 'Target Language', 'jwl-ultimate-tinymce' ) ) . '",
langcode: "' . esc_js( __( 'Language Code', 'jwl-ultimate-tinymce' ) ) . '",
encoding: "' . esc_js( __( 'Target Character Encoding', 'jwl-ultimate-tinymce' ) ) . '",
mime: "' . esc_js( __( 'Target MIME Type', 'jwl-ultimate-tinymce' ) ) . '",
rel: "' . esc_js( __( 'Relationship Page to Target', 'jwl-ultimate-tinymce' ) ) . '",
rev: "' . esc_js( __( 'Relationship Target to Page', 'jwl-ultimate-tinymce' ) ) . '",
tabindex: "' . esc_js( __( 'TabIndex', 'jwl-ultimate-tinymce' ) ) . '",
accesskey: "' . esc_js( __( 'AccessKey', 'jwl-ultimate-tinymce' ) ) . '",
event_props: "' . esc_js( __( 'Events', 'jwl-ultimate-tinymce' ) ) . '"
},
advimage_dlg:{
image_list: "' . esc_js( __( 'Image List', 'jwl-ultimate-tinymce' ) ) . '",
align_right: "' . esc_js( __( 'Right', 'jwl-ultimate-tinymce' ) ) . '",
align_left: "' . esc_js( __( 'Left', 'jwl-ultimate-tinymce' ) ) . '",
align_textbottom: "' . esc_js( __( 'Text Bottom', 'jwl-ultimate-tinymce' ) ) . '",
align_texttop: "' . esc_js( __( 'Text Top', 'jwl-ultimate-tinymce' ) ) . '",
align_bottom: "' . esc_js( __( 'Bottom', 'jwl-ultimate-tinymce' ) ) . '",
align_middle: "' . esc_js( __( 'Middle', 'jwl-ultimate-tinymce' ) ) . '",
align_top: "' . esc_js( __( 'Top', 'jwl-ultimate-tinymce' ) ) . '",
align_baseline: "' . esc_js( __( 'Baseline', 'jwl-ultimate-tinymce' ) ) . '",
align: "' . esc_js( __( 'Alignment', 'jwl-ultimate-tinymce' ) ) . '",
hspace: "' . esc_js( __( 'Horizontal Space', 'jwl-ultimate-tinymce' ) ) . '",
vspace: "' . esc_js( __( 'Vertical Space', 'jwl-ultimate-tinymce' ) ) . '",
dimensions: "' . esc_js( __( 'Dimensions', 'jwl-ultimate-tinymce' ) ) . '",
border: "' . esc_js( __( 'Border', 'jwl-ultimate-tinymce' ) ) . '",
list: "' . esc_js( __( 'Image List', 'jwl-ultimate-tinymce' ) ) . '",
alt: "' . esc_js( __( 'Image Description', 'jwl-ultimate-tinymce' ) ) . '",
src: "' . esc_js( __( 'Image URL', 'jwl-ultimate-tinymce' ) ) . '",
dialog_title: "' . esc_js( __( 'Insert/Edit Image', 'jwl-ultimate-tinymce' ) ) . '",
missing_alt: "' . esc_js( __( 'Are you sure you want to continue without including an Image Description? Without it the image may not be accessible to some users with disabilities, or to those using a text browser, or browsing the Web with images turned off.', 'jwl-ultimate-tinymce' ) ) . '",
example_img: "' . esc_js( __( 'Appearance Preview Image', 'jwl-ultimate-tinymce' ) ) . '",
misc: "' . esc_js( __( 'Miscellaneous', 'jwl-ultimate-tinymce' ) ) . '",
mouseout: "' . esc_js( __( 'For Mouse Out', 'jwl-ultimate-tinymce' ) ) . '",
mouseover: "' . esc_js( __( 'For Mouse Over', 'jwl-ultimate-tinymce' ) ) . '",
alt_image: "' . esc_js( __( 'Alternative Image', 'jwl-ultimate-tinymce' ) ) . '",
swap_image: "' . esc_js( __( 'Swap Image', 'jwl-ultimate-tinymce' ) ) . '",
map: "' . esc_js( __( 'Image Map', 'jwl-ultimate-tinymce' ) ) . '",
id: "' . esc_js( __( 'ID', 'jwl-ultimate-tinymce' ) ) . '",
rtl: "' . esc_js( __( 'Right to Left', 'jwl-ultimate-tinymce' ) ) . '",
ltr: "' . esc_js( __( 'Left to Right', 'jwl-ultimate-tinymce' ) ) . '",
classes: "' . esc_js( __( 'Classes', 'jwl-ultimate-tinymce' ) ) . '",
style: "' . esc_js( __( 'Style', 'jwl-ultimate-tinymce' ) ) . '",
long_desc: "' . esc_js( __( 'Long Description Link', 'jwl-ultimate-tinymce' ) ) . '",
langcode: "' . esc_js( __( 'Language Code', 'jwl-ultimate-tinymce' ) ) . '",
langdir: "' . esc_js( __( 'Language Direction', 'jwl-ultimate-tinymce' ) ) . '",
constrain_proportions: "' . esc_js( __( 'Constrain Proportions', 'jwl-ultimate-tinymce' ) ) . '",
preview: "' . esc_js( __( 'Preview', 'jwl-ultimate-tinymce' ) ) . '",
title: "' . esc_js( __( 'Title', 'jwl-ultimate-tinymce' ) ) . '",
general: "' . esc_js( __( 'General', 'jwl-ultimate-tinymce' ) ) . '",
tab_advanced: "' . esc_js( __( 'Advanced', 'jwl-ultimate-tinymce' ) ) . '",
tab_appearance: "' . esc_js( __( 'Appearance', 'jwl-ultimate-tinymce' ) ) . '",
tab_general: "' . esc_js( __( 'General', 'jwl-ultimate-tinymce' ) ) . '",
width: "' . esc_js( __( 'Width', 'jwl-ultimate-tinymce' ) ) . '",
height: "' . esc_js( __( 'Height', 'jwl-ultimate-tinymce' ) ) . '"
},
div:{
clearleft_desc: "' . esc_js( __( 'Div Clear left', 'jwl-ultimate-tinymce' ) ) . '",
clearright_desc: "' . esc_js( __( 'Div Clear right', 'jwl-ultimate-tinymce' ) ) . '",
clearboth_desc: "' . esc_js( __( 'Div Clear both', 'jwl-ultimate-tinymce' ) ) . '",
clear_alt: "' . esc_js( __( 'Div Clear', 'jwl-ultimate-tinymce' ) ) . '"
},
clker:{
title: "' . esc_js( __( 'clker.com - the online royalty free public domain clipart', 'jwl-ultimate-tinymce' ) ) . '",
gallery: "' . esc_js( __( 'clker Clipart Gallery', 'jwl-ultimate-tinymce' ) ) . '"
},
codemagic:{
editor_button: "' . esc_js( __( 'Advanced HTML Editor w/ Syntax Highlighter', 'jwl-ultimate-tinymce' ) ) . '"
},
codemagic_dlg:{
code_title: "' . esc_js( __( 'CodeMagic - syntax coloring and intendation', 'jwl-ultimate-tinymce' ) ) . '",
code_label: "' . esc_js( __( 'Edit code', 'jwl-ultimate-tinymce' ) ) . '",
toggle_highlighting: "' . esc_js( __( 'Syntax highlighting', 'jwl-ultimate-tinymce' ) ) . '",
toggle_autocompletion: "' . esc_js( __( 'Auto completion', 'jwl-ultimate-tinymce' ) ) . '",
toggle_wraptext: "' . esc_js( __( 'Wrap text', 'jwl-ultimate-tinymce' ) ) . '",
search: "' . esc_js( __( 'Search', 'jwl-ultimate-tinymce' ) ) . '",
replace: "' . esc_js( __( 'Replace', 'jwl-ultimate-tinymce' ) ) . '",
undo: "' . esc_js( __( 'Undo', 'jwl-ultimate-tinymce' ) ) . '",
redo: "' . esc_js( __( 'Redo', 'jwl-ultimate-tinymce' ) ) . '",
search_replace: "' . esc_js( __( 'Search and Replace', 'jwl-ultimate-tinymce' ) ) . '",
reintendt: "' . esc_js( __( 'Format HTML code', 'jwl-ultimate-tinymce' ) ) . '",
nothing_found: "' . esc_js( __( 'Nothing found.', 'jwl-ultimate-tinymce' ) ) . '",
nothing_to_replace: "' . esc_js( __( 'Nothing to replace.', 'jwl-ultimate-tinymce' ) ) . '"
},
directionality:{
ltr_desc: "' . esc_js( __( 'Direction - Left to Right', 'jwl-ultimate-tinymce' ) ) . '",
rtl_desc: "' . esc_js( __( 'Direction - Right to Left', 'jwl-ultimate-tinymce' ) ) . '"
},
emotions_dlg:{
Ahhhh: "' . esc_js( __( "Ahhhh", 'jwl-ultimate-tinymce' ) ) . '",
amazing: "' . esc_js( __( "Amazing", 'jwl-ultimate-tinymce' ) ) . '",
big_smile: "' . esc_js( __( "Big Smile", 'jwl-ultimate-tinymce' ) ) . '",
cry1: "' . esc_js( __( "Cry", 'jwl-ultimate-tinymce' ) ) . '",
electric_shock: "' . esc_js( __( "Electric Shock", 'jwl-ultimate-tinymce' ) ) . '",
exciting: "' . esc_js( __( "Exciting", 'jwl-ultimate-tinymce' ) ) . '",
eyes_dropped: "' . esc_js( __( "Eyes Dropped", 'jwl-ultimate-tinymce' ) ) . '",
girl: "' . esc_js( __( "Girl", 'jwl-ultimate-tinymce' ) ) . '",
grimace: "' . esc_js( __( "Grimace", 'jwl-ultimate-tinymce' ) ) . '",
haha: "' . esc_js( __( "Ha Ha", 'jwl-ultimate-tinymce' ) ) . '",
scorn: "' . esc_js( __( "Scorn", 'jwl-ultimate-tinymce' ) ) . '",
secret_smile: "' . esc_js( __( "Secret Smile", 'jwl-ultimate-tinymce' ) ) . '",
shame: "' . esc_js( __( "Shame", 'jwl-ultimate-tinymce' ) ) . '",
shocked: "' . esc_js( __( "Shocked", 'jwl-ultimate-tinymce' ) ) . '",
unhappy: "' . esc_js( __( "Unhappy", 'jwl-ultimate-tinymce' ) ) . '",
victory: "' . esc_js( __( "Victory", 'jwl-ultimate-tinymce' ) ) . '",
what: "' . esc_js( __( "What", 'jwl-ultimate-tinymce' ) ) . '",
Alien: "' . esc_js( __( "Alien", 'jwl-ultimate-tinymce' ) ) . '",
Blush: "' . esc_js( __( "Blush", 'jwl-ultimate-tinymce' ) ) . '",
Crying: "' . esc_js( __( "Crying", 'jwl-ultimate-tinymce' ) ) . '",
Cool1: "' . esc_js( __( "Cool", 'jwl-ultimate-tinymce' ) ) . '",
Devil: "' . esc_js( __( "Devil", 'jwl-ultimate-tinymce' ) ) . '",
Happy: "' . esc_js( __( "Happy", 'jwl-ultimate-tinymce' ) ) . '",
Huh: "' . esc_js( __( "Huh", 'jwl-ultimate-tinymce' ) ) . '",
Love: "' . esc_js( __( "Love", 'jwl-ultimate-tinymce' ) ) . '",
Sick: "' . esc_js( __( "Sick", 'jwl-ultimate-tinymce' ) ) . '",
Sleep: "' . esc_js( __( "Sleep", 'jwl-ultimate-tinymce' ) ) . '",
Smile1: "' . esc_js( __( "Smile1", 'jwl-ultimate-tinymce' ) ) . '",
Tear: "' . esc_js( __( "Tear", 'jwl-ultimate-tinymce' ) ) . '",
Tounge: "' . esc_js( __( "Tounge", 'jwl-ultimate-tinymce' ) ) . '",
cry: "' . esc_js( __( "Cry", 'jwl-ultimate-tinymce' ) ) . '",
cool: "' . esc_js( __( "Cool", 'jwl-ultimate-tinymce' ) ) . '",
desc: "' . esc_js( __( "Emotions", 'jwl-ultimate-tinymce' ) ) . '",
title: "' . esc_js( __( "Emotions", 'jwl-ultimate-tinymce' ) ) . '",
usage: "' . esc_js( __( "Choose Wisely...", 'jwl-ultimate-tinymce' ) ) . '",
yell: "' . esc_js( __( "Yell", 'jwl-ultimate-tinymce' ) ) . '",
wink: "' . esc_js( __( "Wink", 'jwl-ultimate-tinymce' ) ) . '",
Wink1: "' . esc_js( __( "Wink", 'jwl-ultimate-tinymce' ) ) . '",
Yikes: "' . esc_js( __( "Yikes", 'jwl-ultimate-tinymce' ) ) . '",
undecided: "' . esc_js( __( "Undecided", 'jwl-ultimate-tinymce' ) ) . '",
tongue_out: "' . esc_js( __( "Tongue Out", 'jwl-ultimate-tinymce' ) ) . '",
surprised: "' . esc_js( __( "Surprised", 'jwl-ultimate-tinymce' ) ) . '",
smile: "' . esc_js( __( "Smile", 'jwl-ultimate-tinymce' ) ) . '",
sealed: "' . esc_js( __( "Sealed", 'jwl-ultimate-tinymce' ) ) . '",
money_mouth: "' . esc_js( __( "Money Mouth", 'jwl-ultimate-tinymce' ) ) . '",
laughing: "' . esc_js( __( "Laughing", 'jwl-ultimate-tinymce' ) ) . '",
kiss: "' . esc_js( __( "Kiss", 'jwl-ultimate-tinymce' ) ) . '",
innocent: "' . esc_js( __( "Innocent", 'jwl-ultimate-tinymce' ) ) . '",
frown: "' . esc_js( __( "Frown", 'jwl-ultimate-tinymce' ) ) . '",
foot_in_mouth: "' . esc_js( __( "Foot in Mouth", 'jwl-ultimate-tinymce' ) ) . '",
embarassed: "' . esc_js( __( "Embarassed", 'jwl-ultimate-tinymce' ) ) . '",
popoadore: "' . esc_js( __( "Adore", 'jwl-ultimate-tinymce' ) ) . '",
popoah: "' . esc_js( __( "Ahh!", 'jwl-ultimate-tinymce' ) ) . '",
popoangry: "' . esc_js( __( "Angry", 'jwl-ultimate-tinymce' ) ) . '",
popobaffle: "' . esc_js( __( "Baffle", 'jwl-ultimate-tinymce' ) ) . '",
popobeat_ball: "' . esc_js( __( "Hit with Ball", 'jwl-ultimate-tinymce' ) ) . '",
popobeat_brick: "' . esc_js( __( "Hit with Brick", 'jwl-ultimate-tinymce' ) ) . '",
popobig_smile: "' . esc_js( __( "Big Smile", 'jwl-ultimate-tinymce' ) ) . '",
popoboss: "' . esc_js( __( "Big Boss", 'jwl-ultimate-tinymce' ) ) . '",
popoburn_joss_stick: "' . esc_js( __( "Pray", 'jwl-ultimate-tinymce' ) ) . '",
popocanny: "' . esc_js( __( "Canny", 'jwl-ultimate-tinymce' ) ) . '",
popofurious: "' . esc_js( __( "Furious", 'jwl-ultimate-tinymce' ) ) . '",
popoconfident: "' . esc_js( __( "Confident", 'jwl-ultimate-tinymce' ) ) . '",
popoconfuse: "' . esc_js( __( "Confused", 'jwl-ultimate-tinymce' ) ) . '",
popocry: "' . esc_js( __( "Crying", 'jwl-ultimate-tinymce' ) ) . '",
popodoubt: "' . esc_js( __( "Doubt it!", 'jwl-ultimate-tinymce' ) ) . '",
popodribble: "' . esc_js( __( "Dribble", 'jwl-ultimate-tinymce' ) ) . '",
popoembarrassed: "' . esc_js( __( "Embarrassed", 'jwl-ultimate-tinymce' ) ) . '",
popofeel_good: "' . esc_js( __( "Feeling Good", 'jwl-ultimate-tinymce' ) ) . '",
popohaha: "' . esc_js( __( "Ha Ha", 'jwl-ultimate-tinymce' ) ) . '",
popohell_boy: "' . esc_js( __( "Hell Boy", 'jwl-ultimate-tinymce' ) ) . '",
popolook_down: "' . esc_js( __( "Yeah... Sure", 'jwl-ultimate-tinymce' ) ) . '",
popomatrix: "' . esc_js( __( "Matrix", 'jwl-ultimate-tinymce' ) ) . '",
popomisdoubt: "' . esc_js( __( "Oh Really?", 'jwl-ultimate-tinymce' ) ) . '",
popooh: "' . esc_js( __( "Ugh!", 'jwl-ultimate-tinymce' ) ) . '",
popoops: "' . esc_js( __( "Oops", 'jwl-ultimate-tinymce' ) ) . '",
poposad: "' . esc_js( __( "Sad", 'jwl-ultimate-tinymce' ) ) . '",
popostill_dreaming: "' . esc_js( __( "Still Dreaming", 'jwl-ultimate-tinymce' ) ) . '",
poposurrender: "' . esc_js( __( "I Surrender!", 'jwl-ultimate-tinymce' ) ) . '",
poposweet_kiss: "' . esc_js( __( "Sweet Kiss", 'jwl-ultimate-tinymce' ) ) . '",
popotired: "' . esc_js( __( "So Tired", 'jwl-ultimate-tinymce' ) ) . '",
popotoo_sad: "' . esc_js( __( "Too Sad", 'jwl-ultimate-tinymce' ) ) . '",
popowhat: "' . esc_js( __( "What?!", 'jwl-ultimate-tinymce' ) ) . '"
},
encode:{
encode: "' . esc_js( __( 'Encrypt this text', 'jwl-ultimate-tinymce' ) ) . '",
decode: "' . esc_js( __( 'Decrypt this text', 'jwl-ultimate-tinymce' ) ) . '"
},
ezimage:{
desc : "' . esc_js( __( 'Insert / edit an image', 'jwl-ultimate-tinymce' ) ) . '"
},
ezimage_dlg:{
title : "' . esc_js( __( 'Insert / edit an image', 'jwl-ultimate-tinymce' ) ) . '",
src : "' . esc_js( __( 'URL', 'jwl-ultimate-tinymce' ) ) . '",
width : "' . esc_js( __( 'Width (implicit height)', 'jwl-ultimate-tinymce' ) ) . '",
margin : "' . esc_js( __( 'Margins', 'jwl-ultimate-tinymce' ) ) . '",
automargin : "' . esc_js( __( 'Auto margins', 'jwl-ultimate-tinymce' ) ) . '",
align : "' . esc_js( __( 'Alignment', 'jwl-ultimate-tinymce' ) ) . '",
left : "' . esc_js( __( 'left', 'jwl-ultimate-tinymce' ) ) . '",
center : "' . esc_js( __( 'center', 'jwl-ultimate-tinymce' ) ) . '",
right : "' . esc_js( __( 'right', 'jwl-ultimate-tinymce' ) ) . '",
txt : "' . esc_js( __( 'Text', 'jwl-ultimate-tinymce' ) ) . '",
txtastitle : "' . esc_js( __( 'as tooltip', 'jwl-ultimate-tinymce' ) ) . '",
txtascaption : "' . esc_js( __( 'as caption', 'jwl-ultimate-tinymce' ) ) . '",
alt : "' . esc_js( __( 'Alt', 'jwl-ultimate-tinymce' ) ) . '",
altastxt : "' . esc_js( __( 'same as above', 'jwl-ultimate-tinymce' ) ) . '",
popup : "' . esc_js( __( 'Original in Popup', 'jwl-ultimate-tinymce' ) ) . '",
pophlp : "' . esc_js( __( 'with clickable image', 'jwl-ultimate-tinymce' ) ) . '",
preview : "' . esc_js( __( 'Preview', 'jwl-ultimate-tinymce' ) ) . '",
prevmsg : "' . esc_js( __( 'No place for a real preview with agencement when image is too big', 'jwl-ultimate-tinymce' ) ) . '",
prevcmd : "' . esc_js( __( 'Preview', 'jwl-ultimate-tinymce' ) ) . '",
about : "' . esc_js( __( 'About...', 'jwl-ultimate-tinymce' ) ) . '",
legal : "' . esc_js( __( 'This plugin is Freeware and Open-source (more infos in the PDF documentation delivered with the package)', 'jwl-ultimate-tinymce' ) ) . '"
},
equation:{
title: "' . esc_js( __( 'Equation Editor', 'jwl-ultimate-tinymce' ) ) . '"
},
insertdatetime:{
insertdate_desc: "' . esc_js( __( 'Insert Date', 'jwl-ultimate-tinymce' ) ) . '",
inserttime_desc: "' . esc_js( __( 'Insert Time', 'jwl-ultimate-tinymce' ) ) . '"
},
jwlspan:{
title: "' . esc_js( __( 'Wrap with SPAN tags.', 'jwl-ultimate-tinymce' ) ) . '"
},
linebreak:{
title: "' . esc_js( __( 'Insert a linebreak', 'jwl-ultimate-tinymce' ) ) . '"
},
loremipsum:{
desc: "' . esc_js( __( 'Lorem Ipsum', 'jwl-ultimate-tinymce' ) ) . '"
},
loremipsum_dlg:{
sentences : "' . esc_js( __( 'Source text', 'jwl-ultimate-tinymce' ) ) . '",
amount : "' . esc_js( __( 'Generated amount', 'jwl-ultimate-tinymce' ) ) . '",
formating : "' . esc_js( __( 'Formating', 'jwl-ultimate-tinymce' ) ) . '",
unformated : "' . esc_js( __( 'Unformated sentences', 'jwl-ultimate-tinymce' ) ) . '",
paragraphs : "' . esc_js( __( 'Paragraphs <p>', 'jwl-ultimate-tinymce' ) ) . '",
list : "' . esc_js( __( 'List <ul>', 'jwl-ultimate-tinymce' ) ) . '",
orderedlist : "' . esc_js( __( 'Ordered List <ol>', 'jwl-ultimate-tinymce' ) ) . '"
},
mailto:{
mailto_desc: "' . esc_js( __( 'Render mailto link (opens link in email client)', 'jwl-ultimate-tinymce' ) ) . '"
},
media_dlg:{
video: "' . esc_js( __( 'Video', 'jwl-ultimate-tinymce' ) ) . '",
audio: "' . esc_js( __( 'Audio', 'jwl-ultimate-tinymce' ) ) . '",
flash: "' . esc_js( __( 'Flash', 'jwl-ultimate-tinymce' ) ) . '",
quicktime: "' . esc_js( __( 'QuickTime', 'jwl-ultimate-tinymce' ) ) . '",
shockwave: "' . esc_js( __( 'Shockwave', 'jwl-ultimate-tinymce' ) ) . '",
windowsmedia: "' . esc_js( __( 'Windows Media', 'jwl-ultimate-tinymce' ) ) . '",
realmedia: "' . esc_js( __( 'Real Media', 'jwl-ultimate-tinymce' ) ) . '",
iframe: "' . esc_js( __( 'iFrame', 'jwl-ultimate-tinymce' ) ) . '"
},
nonbreaking:{
nonbreaking_desc: "' . esc_js( __( 'Nonbreaking space character', 'jwl-ultimate-tinymce' ) ) . '"
},
preview:{
preview_desc: "' . esc_js( __( 'Preview content', 'jwl-ultimate-tinymce' ) ) . '"
},
print:{
print_desc: "' . esc_js( __( 'Print content', 'jwl-ultimate-tinymce' ) ) . '"
},
ptags:{
title: "' . esc_js( __( 'Wrap selection with Paragraph tags', 'jwl-ultimate-tinymce' ) ) . '"
},
ptags_dlg:{
titleP : "' . esc_js( __( "Insert P Tag", 'jwl-ultimate-tinymce' ) ) . '",
noteP : "' . esc_js( __( 'You have selected the P tag. Your tag may be refined using the options below. Click "Insert" to insert selection.', 'jwl-ultimate-tinymce' ) ) . '",
jwlid : "' . esc_js( __( "Enter ID for p tag", 'jwl-ultimate-tinymce' ) ) . '",
jwlclass : "' . esc_js( __( "Enter CLASSES for p tag", 'jwl-ultimate-tinymce' ) ) . '",
jwlstyle : "' . esc_js( __( "Enter Style Attributes", 'jwl-ultimate-tinymce' ) ) . '",
noteP2 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '"
},
searchreplace_dlg:{
findwhat: "' . esc_js( __( "Find What", 'jwl-ultimate-tinymce' ) ) . '",
replacewith: "' . esc_js( __( "Replace with", 'jwl-ultimate-tinymce' ) ) . '",
direction: "' . esc_js( __( "Direction", 'jwl-ultimate-tinymce' ) ) . '",
up: "' . esc_js( __( "Up", 'jwl-ultimate-tinymce' ) ) . '",
down: "' . esc_js( __( "Down", 'jwl-ultimate-tinymce' ) ) . '",
mcase: "' . esc_js( __( "Match Case", 'jwl-ultimate-tinymce' ) ) . '",
findnext: "' . esc_js( __( "Find Next", 'jwl-ultimate-tinymce' ) ) . '",
allreplaced: "' . esc_js( __( "All occurrences of the search string were replaced.", 'jwl-ultimate-tinymce' ) ) . '",
direction: "' . esc_js( __( "Direction", 'jwl-ultimate-tinymce' ) ) . '",
direction: "' . esc_js( __( "Direction", 'jwl-ultimate-tinymce' ) ) . '",
direction: "' . esc_js( __( "Direction", 'jwl-ultimate-tinymce' ) ) . '",
searchnext_desc: "' . esc_js( __( "Find Again", 'jwl-ultimate-tinymce' ) ) . '",
notfound: "' . esc_js( __( "The search has been completed. The search string could not be found.", 'jwl-ultimate-tinymce' ) ) . '",
search_title: "' . esc_js( __( "Find", 'jwl-ultimate-tinymce' ) ) . '",
replace_title: "' . esc_js( __( "Find/Replace", 'jwl-ultimate-tinymce' ) ) . '",
replaceall: "' . esc_js( __( "Replace All", 'jwl-ultimate-tinymce' ) ) . '",
replace: "' . esc_js( __( "Replace", 'jwl-ultimate-tinymce' ) ) . '"
},
shortcodes:{
desc: "' . esc_js( __( "Insert Shortcode", 'jwl-ultimate-tinymce' ) ) . '"
},
shortcodes_dlg:{
title : "' . esc_js( __( "Insert Shortcodes", 'jwl-ultimate-tinymce' ) ) . '",
instr : "' . esc_js( __( "A list of all active available Shortcodes.", 'jwl-ultimate-tinymce' ) ) . '",
note: "' . esc_js( __( "Simply choose and click the desired shortcode. (Additional attributes may still need to be set in the actual shortcode; such as a specific ID)", 'jwl-ultimate-tinymce' ) ) . '"
},
style_dlg:{
text_lineheight: "' . esc_js( __( "Line Height", 'jwl-ultimate-tinymce' ) ) . '",
text_variant: "' . esc_js( __( "Variant", 'jwl-ultimate-tinymce' ) ) . '",
text_style: "' . esc_js( __( "Style", 'jwl-ultimate-tinymce' ) ) . '",
text_weight: "' . esc_js( __( "Weight", 'jwl-ultimate-tinymce' ) ) . '",
text_size: "' . esc_js( __( "Size", 'jwl-ultimate-tinymce' ) ) . '",
text_font: "' . esc_js( __( "Font", 'jwl-ultimate-tinymce' ) ) . '",
text_props: "' . esc_js( __( "Text", 'jwl-ultimate-tinymce' ) ) . '",
positioning_tab: "' . esc_js( __( "Positioning", 'jwl-ultimate-tinymce' ) ) . '",
list_tab: "' . esc_js( __( "List", 'jwl-ultimate-tinymce' ) ) . '",
border_tab: "' . esc_js( __( "Border", 'jwl-ultimate-tinymce' ) ) . '",
box_tab: "' . esc_js( __( "Box", 'jwl-ultimate-tinymce' ) ) . '",
block_tab: "' . esc_js( __( "Block", 'jwl-ultimate-tinymce' ) ) . '",
background_tab: "' . esc_js( __( "Background", 'jwl-ultimate-tinymce' ) ) . '",
text_tab: "' . esc_js( __( "Text", 'jwl-ultimate-tinymce' ) ) . '",
apply: "' . esc_js( __( "Apply", 'jwl-ultimate-tinymce' ) ) . '",
title: "' . esc_js( __( "Edit CSS Style", 'jwl-ultimate-tinymce' ) ) . '",
clip: "' . esc_js( __( "Clip", 'jwl-ultimate-tinymce' ) ) . '",
placement: "' . esc_js( __( "Placement", 'jwl-ultimate-tinymce' ) ) . '",
overflow: "' . esc_js( __( "Overflow", 'jwl-ultimate-tinymce' ) ) . '",
zindex: "' . esc_js( __( "Z-index", 'jwl-ultimate-tinymce' ) ) . '",
visibility: "' . esc_js( __( "Visibility", 'jwl-ultimate-tinymce' ) ) . '",
positioning_type: "' . esc_js( __( "Type", 'jwl-ultimate-tinymce' ) ) . '",
position: "' . esc_js( __( "Position", 'jwl-ultimate-tinymce' ) ) . '",
bullet_image: "' . esc_js( __( "Bullet Image", 'jwl-ultimate-tinymce' ) ) . '",
list_type: "' . esc_js( __( "Type", 'jwl-ultimate-tinymce' ) ) . '",
color: "' . esc_js( __( "Color", 'jwl-ultimate-tinymce' ) ) . '",
height: "' . esc_js( __( "Height", 'jwl-ultimate-tinymce' ) ) . '",
width: "' . esc_js( __( "Width", 'jwl-ultimate-tinymce' ) ) . '",
style: "' . esc_js( __( "Style", 'jwl-ultimate-tinymce' ) ) . '",
margin: "' . esc_js( __( "Margin", 'jwl-ultimate-tinymce' ) ) . '",
left: "' . esc_js( __( "Left", 'jwl-ultimate-tinymce' ) ) . '",
bottom: "' . esc_js( __( "Bottom", 'jwl-ultimate-tinymce' ) ) . '",
right: "' . esc_js( __( "Right", 'jwl-ultimate-tinymce' ) ) . '",
top: "' . esc_js( __( "Top", 'jwl-ultimate-tinymce' ) ) . '",
same: "' . esc_js( __( "Same for All", 'jwl-ultimate-tinymce' ) ) . '",
padding: "' . esc_js( __( "Padding", 'jwl-ultimate-tinymce' ) ) . '",
box_clear: "' . esc_js( __( "Clear", 'jwl-ultimate-tinymce' ) ) . '",
box_float: "' . esc_js( __( "Float", 'jwl-ultimate-tinymce' ) ) . '",
box_height: "' . esc_js( __( "Height", 'jwl-ultimate-tinymce' ) ) . '",
box_width: "' . esc_js( __( "Width", 'jwl-ultimate-tinymce' ) ) . '",
block_display: "' . esc_js( __( "Display", 'jwl-ultimate-tinymce' ) ) . '",
block_whitespace: "' . esc_js( __( "Whitespace", 'jwl-ultimate-tinymce' ) ) . '",
block_text_indent: "' . esc_js( __( "Text Indent", 'jwl-ultimate-tinymce' ) ) . '",
block_text_align: "' . esc_js( __( "Text Align", 'jwl-ultimate-tinymce' ) ) . '",
block_vertical_alignment: "' . esc_js( __( "Vertical Alignment", 'jwl-ultimate-tinymce' ) ) . '",
block_letterspacing: "' . esc_js( __( "Letter Spacing", 'jwl-ultimate-tinymce' ) ) . '",
block_wordspacing: "' . esc_js( __( "Word Spacing", 'jwl-ultimate-tinymce' ) ) . '",
background_vpos: "' . esc_js( __( "Vertical Position", 'jwl-ultimate-tinymce' ) ) . '",
background_hpos: "' . esc_js( __( "Horizontal Position", 'jwl-ultimate-tinymce' ) ) . '",
background_attachment: "' . esc_js( __( "Attachment", 'jwl-ultimate-tinymce' ) ) . '",
background_repeat: "' . esc_js( __( "Repeat", 'jwl-ultimate-tinymce' ) ) . '",
background_image: "' . esc_js( __( "Background Image", 'jwl-ultimate-tinymce' ) ) . '",
background_color: "' . esc_js( __( "Background Color", 'jwl-ultimate-tinymce' ) ) . '",
text_none: "' . esc_js( __( "None", 'jwl-ultimate-tinymce' ) ) . '",
text_blink: "' . esc_js( __( "Blink", 'jwl-ultimate-tinymce' ) ) . '",
text_case: "' . esc_js( __( "Case", 'jwl-ultimate-tinymce' ) ) . '",
text_striketrough: "' . esc_js( __( "Strikethrough", 'jwl-ultimate-tinymce' ) ) . '",
text_underline: "' . esc_js( __( "Underline", 'jwl-ultimate-tinymce' ) ) . '",
text_overline: "' . esc_js( __( "Overline", 'jwl-ultimate-tinymce' ) ) . '",
text_decoration: "' . esc_js( __( "Decoration", 'jwl-ultimate-tinymce' ) ) . '",
text_color: "' . esc_js( __( "Color", 'jwl-ultimate-tinymce' ) ) . '",
text: "' . esc_js( __( "Text", 'jwl-ultimate-tinymce' ) ) . '",
background: "' . esc_js( __( "Background", 'jwl-ultimate-tinymce' ) ) . '",
block: "' . esc_js( __( "Block", 'jwl-ultimate-tinymce' ) ) . '",
box: "' . esc_js( __( "Box", 'jwl-ultimate-tinymce' ) ) . '",
border: "' . esc_js( __( "Border", 'jwl-ultimate-tinymce' ) ) . '",
list: "' . esc_js( __( "List", 'jwl-ultimate-tinymce' ) ) . '"
},
table:{
desc: "' . esc_js( __( "Insert table", 'jwl-ultimate-tinymce' ) ) . '"
},
table_dlg:{
rules_border: "' . esc_js( __( "border", 'jwl-ultimate-tinymce' ) ) . '",
rules_box: "' . esc_js( __( "box", 'jwl-ultimate-tinymce' ) ) . '",
rules_vsides: "' . esc_js( __( "vsides", 'jwl-ultimate-tinymce' ) ) . '",
rules_rhs: "' . esc_js( __( "rhs", 'jwl-ultimate-tinymce' ) ) . '",
rules_lhs: "' . esc_js( __( "lhs", 'jwl-ultimate-tinymce' ) ) . '",
rules_hsides: "' . esc_js( __( "hsides", 'jwl-ultimate-tinymce' ) ) . '",
rules_below: "' . esc_js( __( "below", 'jwl-ultimate-tinymce' ) ) . '",
rules_above: "' . esc_js( __( "above", 'jwl-ultimate-tinymce' ) ) . '",
rules_void: "' . esc_js( __( "void", 'jwl-ultimate-tinymce' ) ) . '",
rules: "' . esc_js( __( "Rules", 'jwl-ultimate-tinymce' ) ) . '",
frame_all: "' . esc_js( __( "all", 'jwl-ultimate-tinymce' ) ) . '",
frame_cols: "' . esc_js( __( "cols", 'jwl-ultimate-tinymce' ) ) . '",
frame_rows: "' . esc_js( __( "rows", 'jwl-ultimate-tinymce' ) ) . '",
frame_groups: "' . esc_js( __( "groups", 'jwl-ultimate-tinymce' ) ) . '",
frame_none: "' . esc_js( __( "none", 'jwl-ultimate-tinymce' ) ) . '",
frame: "' . esc_js( __( "Frame", 'jwl-ultimate-tinymce' ) ) . '",
caption: "' . esc_js( __( "Table Caption", 'jwl-ultimate-tinymce' ) ) . '",
missing_scope: "' . esc_js( __( "Are you sure you want to continue without specifying a scope for this table header cell. Without it, it may be difficult for some users with disabilities to understand the content or data displayed of the table.", 'jwl-ultimate-tinymce' ) ) . '",
cell_limit: "' . esc_js( __( "You\'ve exceeded the maximum number of cells.", 'jwl-ultimate-tinymce' ) ) . '",
row_limit: "' . esc_js( __( "You\'ve exceeded the maximum number of rows.", 'jwl-ultimate-tinymce' ) ) . '",
col_limit: "' . esc_js( __( "You\'ve exceeded the maximum number of columns.", 'jwl-ultimate-tinymce' ) ) . '",
colgroup: "' . esc_js( __( "Col Group", 'jwl-ultimate-tinymce' ) ) . '",
rowgroup: "' . esc_js( __( "Row Group", 'jwl-ultimate-tinymce' ) ) . '",
scope: "' . esc_js( __( "Scope", 'jwl-ultimate-tinymce' ) ) . '",
tfoot: "' . esc_js( __( "Footer", 'jwl-ultimate-tinymce' ) ) . '",
tbody: "' . esc_js( __( "Body", 'jwl-ultimate-tinymce' ) ) . '",
thead: "' . esc_js( __( "Header", 'jwl-ultimate-tinymce' ) ) . '",
row_all: "' . esc_js( __( "Update All Rows in Table", 'jwl-ultimate-tinymce' ) ) . '",
row_even: "' . esc_js( __( "Update Even Rows in Table", 'jwl-ultimate-tinymce' ) ) . '",
row_odd: "' . esc_js( __( "Update Odd Rows in Table", 'jwl-ultimate-tinymce' ) ) . '",
row_row: "' . esc_js( __( "Update Current Row", 'jwl-ultimate-tinymce' ) ) . '",
cell_all: "' . esc_js( __( "Update All Cells in Table", 'jwl-ultimate-tinymce' ) ) . '",
cell_row: "' . esc_js( __( "Update All Cells in Row", 'jwl-ultimate-tinymce' ) ) . '",
cell_cell: "' . esc_js( __( "Update Current Cell", 'jwl-ultimate-tinymce' ) ) . '",
th: "' . esc_js( __( "Header", 'jwl-ultimate-tinymce' ) ) . '",
td: "' . esc_js( __( "Data", 'jwl-ultimate-tinymce' ) ) . '",
summary: "' . esc_js( __( "Summary", 'jwl-ultimate-tinymce' ) ) . '",
bgimage: "' . esc_js( __( "Background Image", 'jwl-ultimate-tinymce' ) ) . '",
rtl: "' . esc_js( __( "Right to Left", 'jwl-ultimate-tinymce' ) ) . '",
ltr: "' . esc_js( __( "Left to Right", 'jwl-ultimate-tinymce' ) ) . '",
mime: "' . esc_js( __( "Target MIME Type", 'jwl-ultimate-tinymce' ) ) . '",
langcode: "' . esc_js( __( "Language Code", 'jwl-ultimate-tinymce' ) ) . '",
langdir: "' . esc_js( __( "Language Direction", 'jwl-ultimate-tinymce' ) ) . '",
style: "' . esc_js( __( "Style", 'jwl-ultimate-tinymce' ) ) . '",
id: "' . esc_js( __( "ID", 'jwl-ultimate-tinymce' ) ) . '",
merge_cells_title: "' . esc_js( __( "Merge Table Cells", 'jwl-ultimate-tinymce' ) ) . '",
bgcolor: "' . esc_js( __( "Background Color", 'jwl-ultimate-tinymce' ) ) . '",
bordercolor: "' . esc_js( __( "Border Color", 'jwl-ultimate-tinymce' ) ) . '",
align_bottom: "' . esc_js( __( "Bottom", 'jwl-ultimate-tinymce' ) ) . '",
align_top: "' . esc_js( __( "Top", 'jwl-ultimate-tinymce' ) ) . '",
valign: "' . esc_js( __( "Vertical Alignment", 'jwl-ultimate-tinymce' ) ) . '",
cell_type: "' . esc_js( __( "Cell Type", 'jwl-ultimate-tinymce' ) ) . '",
cell_title: "' . esc_js( __( "Table Cell Properties", 'jwl-ultimate-tinymce' ) ) . '",
row_title: "' . esc_js( __( "Table Row Properties", 'jwl-ultimate-tinymce' ) ) . '",
align_middle: "' . esc_js( __( "Center", 'jwl-ultimate-tinymce' ) ) . '",
align_right: "' . esc_js( __( "Right", 'jwl-ultimate-tinymce' ) ) . '",
align_left: "' . esc_js( __( "Left", 'jwl-ultimate-tinymce' ) ) . '",
align_default: "' . esc_js( __( "Default", 'jwl-ultimate-tinymce' ) ) . '",
align: "' . esc_js( __( "Alignment", 'jwl-ultimate-tinymce' ) ) . '",
border: "' . esc_js( __( "Border", 'jwl-ultimate-tinymce' ) ) . '",
cellpadding: "' . esc_js( __( "Cell Padding", 'jwl-ultimate-tinymce' ) ) . '",
cellspacing: "' . esc_js( __( "Cell Spacing", 'jwl-ultimate-tinymce' ) ) . '",
rows: "' . esc_js( __( "Rows", 'jwl-ultimate-tinymce' ) ) . '",
cols: "' . esc_js( __( "Columns", 'jwl-ultimate-tinymce' ) ) . '",
height: "' . esc_js( __( "Height", 'jwl-ultimate-tinymce' ) ) . '",
width: "' . esc_js( __( "Width", 'jwl-ultimate-tinymce' ) ) . '",
title: "' . esc_js( __( "Insert/Edit Table", 'jwl-ultimate-tinymce' ) ) . '",
rowtype: "' . esc_js( __( "Row Type", 'jwl-ultimate-tinymce' ) ) . '",
advanced_props: "' . esc_js( __( "Advanced Properties", 'jwl-ultimate-tinymce' ) ) . '",
general_props: "' . esc_js( __( "General Properties", 'jwl-ultimate-tinymce' ) ) . '",
advanced_tab: "' . esc_js( __( "Advanced", 'jwl-ultimate-tinymce' ) ) . '",
general_tab: "' . esc_js( __( "General", 'jwl-ultimate-tinymce' ) ) . '",
cell_col: "' . esc_js( __( "Update all cells in column", 'jwl-ultimate-tinymce' ) ) . '"
},
tagwrap_dlg:{
title : "' . esc_js( __( "Insert HTML5 Tags", 'jwl-ultimate-tinymce' ) ) . '",
titleA : "' . esc_js( __( "Insert A Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleAbbr : "' . esc_js( __( "Insert ABBR Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleArea : "' . esc_js( __( "Insert AREA Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleAside : "' . esc_js( __( "Insert ASIDE Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleAudio : "' . esc_js( __( "Insert AUDIO Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleBase : "' . esc_js( __( "Insert BASE Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleBdo : "' . esc_js( __( "Insert BDO Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleBody : "' . esc_js( __( "Insert BODY Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleBr : "' . esc_js( __( "Insert BR Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleButton : "' . esc_js( __( "Insert BUTTON Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleCanvas : "' . esc_js( __( "Insert CANVAS Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleCite : "' . esc_js( __( "Insert CITE Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleCol : "' . esc_js( __( "Insert COL Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleColgroup : "' . esc_js( __( "Insert COLGROUP Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleData : "' . esc_js( __( "Insert DATA Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleDatalist : "' . esc_js( __( "Insert DATALIST Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleDiv : "' . esc_js( __( "Insert DIV Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleEmbed : "' . esc_js( __( "Insert EMBED Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleEventsource : "' . esc_js( __( "Insert EVENTSOURCE Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleFieldset : "' . esc_js( __( "Insert FIELDSET Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleFigure : "' . esc_js( __( "Insert FIGURE Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleForm : "' . esc_js( __( "Insert FORM Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleH1 : "' . esc_js( __( "Insert H1 Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleH2 : "' . esc_js( __( "Insert H2 Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleH3 : "' . esc_js( __( "Insert H3 Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleH4 : "' . esc_js( __( "Insert H4 Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleH5 : "' . esc_js( __( "Insert H5 Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleH6 : "' . esc_js( __( "Insert H6 Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleHr : "' . esc_js( __( "Insert HR Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleIframe : "' . esc_js( __( "Insert IFRAME Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleImg : "' . esc_js( __( "Insert IMG Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleInput : "' . esc_js( __( "Insert INPUT Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleLabel : "' . esc_js( __( "Insert LABEL Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleLi : "' . esc_js( __( "Insert LI Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleLink : "' . esc_js( __( "Insert LINK Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleMark : "' . esc_js( __( "Insert MARK Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleMap : "' . esc_js( __( "Insert MAP Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleMeta : "' . esc_js( __( "Insert META Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleMeter : "' . esc_js( __( "Insert METER Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleNav : "' . esc_js( __( "Insert NAV Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleObject : "' . esc_js( __( "Insert OBJECT Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleOl : "' . esc_js( __( "Insert OL Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleOptgroup : "' . esc_js( __( "Insert OPTGROUP Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleOption : "' . esc_js( __( "Insert OPTION Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleOutput : "' . esc_js( __( "Insert OUTPUT Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleP : "' . esc_js( __( "Insert P Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleParam : "' . esc_js( __( "Insert PARAM Tag", 'jwl-ultimate-tinymce' ) ) . '",
titlePre : "' . esc_js( __( "Insert PRE Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleProgress : "' . esc_js( __( "Insert PROGRESS Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleScript : "' . esc_js( __( "Insert SCRIPT Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleSelect : "' . esc_js( __( "Insert SELECT Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleSource : "' . esc_js( __( "Insert SOURCE Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleSpan : "' . esc_js( __( "Insert SPAN Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleStyle : "' . esc_js( __( "Insert STYLE Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleTable : "' . esc_js( __( "Insert TABLE Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleTd : "' . esc_js( __( "Insert TD Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleTextarea : "' . esc_js( __( "Insert TEXTAREA Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleTh : "' . esc_js( __( "Insert TH Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleTr : "' . esc_js( __( "Insert TR Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleTrack : "' . esc_js( __( "Insert TRACK Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleUl : "' . esc_js( __( "Insert UL Tag", 'jwl-ultimate-tinymce' ) ) . '",
titleVideo : "' . esc_js( __( "Insert VIDEO Tag", 'jwl-ultimate-tinymce' ) ) . '",
instr : "' . esc_js( __( "Choose the desired HTML tags:", 'jwl-ultimate-tinymce' ) ) . '",
note : "' . esc_js( __( "Below is a complete list of HTML tags from the HTML 5 specification. The HTML tags are listed alphabetically to help you quickly find the tag you are looking for (or to find out whether it exists or not!). Hover over each tag for a brief description.", 'jwl-ultimate-tinymce' ) ) . '",
noteA : "' . esc_js( __( 'You have selected the a tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteAbbr : "' . esc_js( __( 'You have selected the abbr tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteArea : "' . esc_js( __( 'You have selected the area tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteAside : "' . esc_js( __( 'You have selected the aside tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteAudio : "' . esc_js( __( 'You have selected the audio tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteBase : "' . esc_js( __( 'You have selected the base tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteBdo : "' . esc_js( __( 'You have selected the bdo tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteBody : "' . esc_js( __( 'You have selected the body tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteBr : "' . esc_js( __( 'You have selected the br tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteButton : "' . esc_js( __( 'You have selected the button tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteCanvas : "' . esc_js( __( 'You have selected the canvas tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteCite : "' . esc_js( __( 'You have selected the cite tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteCol : "' . esc_js( __( 'You have selected the col tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteColgroup : "' . esc_js( __( 'You have selected the colgroup tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteData : "' . esc_js( __( 'You have selected the data tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteDatalist : "' . esc_js( __( 'You have selected the datalist tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteDiv : "' . esc_js( __( 'You have selected the div tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteEmbed : "' . esc_js( __( 'You have selected the embed tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteEventsource : "' . esc_js( __( 'You have selected the eventsource tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteFieldset : "' . esc_js( __( 'You have selected the fieldset tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteFigure : "' . esc_js( __( 'You have selected the figure tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteForm : "' . esc_js( __( 'You have selected the form tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteH1 : "' . esc_js( __( 'You have selected the h1 tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteH2 : "' . esc_js( __( 'You have selected the h2 tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteH3 : "' . esc_js( __( 'You have selected the h3 tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteH4 : "' . esc_js( __( 'You have selected the h4 tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteH5 : "' . esc_js( __( 'You have selected the h5 tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteH6 : "' . esc_js( __( 'You have selected the h6 tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteHr : "' . esc_js( __( 'You have selected the hr tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteIframe : "' . esc_js( __( 'You have selected the iframe tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteImg : "' . esc_js( __( 'You have selected the img tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteInput : "' . esc_js( __( 'You have selected the input tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteLabel : "' . esc_js( __( 'You have selected the label tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteLi : "' . esc_js( __( 'You have selected the li tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteLink : "' . esc_js( __( 'You have selected the link tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteMark : "' . esc_js( __( 'You have selected the mark tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteMap : "' . esc_js( __( 'You have selected the map tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteMeta : "' . esc_js( __( 'You have selected the meta tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteMeter : "' . esc_js( __( 'You have selected the meter tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteNav : "' . esc_js( __( 'You have selected the nav tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteObject : "' . esc_js( __( 'You have selected the object tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteOl : "' . esc_js( __( 'You have selected the ol tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteOptgroup : "' . esc_js( __( 'You have selected the optgroup tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteOption : "' . esc_js( __( 'You have selected the option tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteOutput : "' . esc_js( __( 'You have selected the output tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteP : "' . esc_js( __( 'You have selected the p tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteParam : "' . esc_js( __( 'You have selected the param tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
notePre : "' . esc_js( __( 'You have selected the pre tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteProgress : "' . esc_js( __( 'You have selected the progress tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteScript : "' . esc_js( __( 'You have selected the script tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteSelect : "' . esc_js( __( 'You have selected the select tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteSource : "' . esc_js( __( 'You have selected the source tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteSpan : "' . esc_js( __( 'You have selected the span tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteStyle : "' . esc_js( __( 'You have selected the style tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteTable : "' . esc_js( __( 'You have selected the table tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteTd : "' . esc_js( __( 'You have selected the td tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteTextarea : "' . esc_js( __( 'You have selected the textarea tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteTh : "' . esc_js( __( 'You have selected the th tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteTr : "' . esc_js( __( 'You have selected the tr tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteTrack : "' . esc_js( __( 'You have selected the track tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteUl : "' . esc_js( __( 'You have selected the ul tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteVideo : "' . esc_js( __( 'You have selected the video tag. Your tag may be refined using the options below.', 'jwl-ultimate-tinymce' ) ) . '",
noteA1 : "' . esc_js( __( "Enter HREF Address:", 'jwl-ultimate-tinymce' ) ) . '",
noteA2 : "' . esc_js( __( "Select Target Window:", 'jwl-ultimate-tinymce' ) ) . '",
noteA3 : "' . __( "The HTML <strong><a></strong> tag is used for creating a hyperlink to another web page.<br /><br />You can use the <strong><em>target</em></strong> attribute to specify whether to open the web page in a new browser window or not.<br /><br />You can also use this tag to link an image.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteAbbr1 : "' . esc_js( __( "Enter Title Attribute:", 'jwl-ultimate-tinymce' ) ) . '",
noteAbbr2 : "' . __( "The HTML <strong><abbr></strong> tag is used for indicating an abbreviation.<br /><br />This tag is often used in conjunction with the global title attribute in order to provide an expansion of the abbreviation. When this attribute is specified, it should only contain an expansion of the abbreviation and nothing else.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteArea1 : "' . esc_js( __( "Enter Area Alternate Text:", 'jwl-ultimate-tinymce' ) ) . '",
noteArea2 : "' . esc_js( __( "Select Shape:", 'jwl-ultimate-tinymce' ) ) . '",
noteArea3 : "' . __( "The HTML <strong><area></strong> tag is used for defining an area in an image map. Image maps are images with clickable areas (sometimes referred to as 'hotspots') that usually link to another page. <br /><br />Note that this tag is always nested within the <strong><map></strong> tag.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteAside1 : "' . esc_js( __( "Enter CSS Styling:", 'jwl-ultimate-tinymce' ) ) . '",
noteAside2 : "' . __( "The HTML <strong><aside></strong> tag is used to represent content that is related to the surrounding content within an article or web page, but could still stand alone in its own right. This type of content is often represented in sidebars.<br /><br />An example is a 'pull quote' from a longer article. A pull quote (also known as a lift-out quote or a call-out) is a quotation or edited excerpt from an article that is placed in a larger typeface on the same page, serving to lead readers into an article and to highlight a key topic.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteAudio1 : "' . esc_js( __( "Enter Audio Source:", 'jwl-ultimate-tinymce' ) ) . '",
noteAudio2 : "' . esc_js( __( "(Required)", 'jwl-ultimate-tinymce' ) ) . '",
noteAudio3 : "' . __( "The HTML <strong><audio></strong> tag is used to specify audio on an HTML document.<br /><br />For example, you could embed a music file on your web page for your visitors to listen to.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteBase1 : "' . esc_js( __( "Enter Base HREF Address:", 'jwl-ultimate-tinymce' ) ) . '",
noteBase2 : "' . esc_js( __( "Select Base Target Window:", 'jwl-ultimate-tinymce' ) ) . '",
noteBase3 : "' . __( "The HTML <strong><base></strong> tag is used to specify a base URI, or URL, for relative links. For example, you can set the base URL once at the top of your page, then all subsequent relative links will use that URL as a starting point.<br /><br />The <strong><base></strong> tag must be between the document's <strong><head></strong> tags. Also, there must be no more than one base element per document.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteBdo1 : "' . esc_js( __( "Set Text Direction:", 'jwl-ultimate-tinymce' ) ) . '",
noteBdo2 : "' . __( "The HTML <strong><bdo></strong> tag is used for overriding the text direction.<br /><br />This can be useful when displaying right-to-left written text (such as Hebrew, Arabic, and other languages/scripts that are written from right to left) within left-to-right text (such as English) or vice versa.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteBody1 : "' . esc_js( __( "Enter Style Attributes:", 'jwl-ultimate-tinymce' ) ) . '",
noteBody2 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteBody3 : "' . __( "The HTML <strong><body></strong> tag is used for indicating the main content section of the HTML document.<br /><br />The body tag is placed between the <strong></head></strong> and the <strong></html></strong> tags.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteBr1 : "' . esc_js( __( "Enter Style Attributes:", 'jwl-ultimate-tinymce' ) ) . '",
noteBr2 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteBr3 : "' . __( "The HTML <strong><br></strong> tag is used for specifying a line break.<br /><br />The <strong><br></strong> tag is an empty tag. In other words, it has no end tag.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteButton1 : "' . esc_js( __( "Enter Button Name:", 'jwl-ultimate-tinymce' ) ) . '",
noteButton2 : "' . esc_js( __( "Enter Button Value:", 'jwl-ultimate-tinymce' ) ) . '",
noteButton3 : "' . esc_js( __( "Enter Button ID:", 'jwl-ultimate-tinymce' ) ) . '",
noteButton4 : "' . esc_js( __( "Enter Button Class:", 'jwl-ultimate-tinymce' ) ) . '",
noteButton5 : "' . esc_js( __( "Select Button Type:", 'jwl-ultimate-tinymce' ) ) . '",
noteButton6 : "' . esc_js( __( "Enter Button Form ID:", 'jwl-ultimate-tinymce' ) ) . '",
noteButton7 : "' . esc_js( __( "(Assigns the name of the control.)", 'jwl-ultimate-tinymce' ) ) . '",
noteButton8 : "' . esc_js( __( "(Assigns an initial value to the control. This attribute must only be present if the form attribute is present.)", 'jwl-ultimate-tinymce' ) ) . '",
noteButton9 : "' . esc_js( __( "(ID to apply stlyes to button.)", 'jwl-ultimate-tinymce' ) ) . '",
noteButton10 : "' . esc_js( __( "(Class to apply styles to button.)", 'jwl-ultimate-tinymce' ) ) . '",
noteButton11 : "' . esc_js( __( "(Specifies the type of button.)", 'jwl-ultimate-tinymce' ) ) . '",
noteButton12 : "' . esc_js( __( "(Specifies the ID of a form to which this control belongs.)", 'jwl-ultimate-tinymce' ) ) . '",
noteButton13 : "' . __( "The HTML <strong><button></strong> tag is used for creating a button control.<br /><br />Although this tag is often used in conjunction with the <strong><form></strong> tag, it can also be used as a standalone control.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteCanvas1 : "' . esc_js( __( "Enter Camvas ID:", 'jwl-ultimate-tinymce' ) ) . '",
noteCanvas2 : "' . esc_js( __( "Enter Canvas Width:", 'jwl-ultimate-tinymce' ) ) . '",
noteCanvas3 : "' . esc_js( __( "Enter Canvas Height:", 'jwl-ultimate-tinymce' ) ) . '",
noteCanvas4 : "' . __( "The HTML <strong><canvas></strong> tag is used for creating graphics on the fly. It can be used for rendering graphs, game graphics, or other visual images.<br /><br />To draw on the canvas, the <strong><canvas></strong> tag is used in conjunction with the <strong><em>getContext(contextId)</em></strong> method.<br /><br />Any content between the <strong><canvas></strong><strong></canvas></strong> tags is 'fallback content'- meaning, it will be displayed only if the canvas cannot be displayed.<br /><br />The <strong><canvas></strong> tag was introduced in HTML 5.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteCite1 : "' . esc_js( __( "Enter Title Attribute:", 'jwl-ultimate-tinymce' ) ) . '",
noteCite2 : "' . __( "The HTML <strong><cite></strong> tag is used for indicating a citation.<br /><br />Text enclosed in <strong><cite></strong> tags is intended to represent the title of a work (e.g. a book, a paper, an essay, a poem, a score, a song, a script, a film, a TV show, a game, a sculpture, a painting, a theatre production, a play, an opera, a musical, an exhibition, etc).<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteCol1 : "' . esc_js( __( "Enter Column Width:", 'jwl-ultimate-tinymce' ) ) . '",
noteCol2 : "' . __( "The HTML <strong><col></strong> tag is used for specifying column properties for each column within a colgroup.<br /><br />You would normally only use this tag if the values for each column is different. Otherwise, you can specify the properties as part of the colgroup tag.<br /><br />Must be used within a HTML <strong><em>colgroup</em></strong> element that doesn't have a <strong><em>span</em></strong> attribute.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteColgroup1 : "' . esc_js( __( "Enter Column Group Span:", 'jwl-ultimate-tinymce' ) ) . '",
noteColgroup2 : "' . esc_js( __( "Enter Column Group Style Attributes:", 'jwl-ultimate-tinymce' ) ) . '",
noteColgroup3 : "' . esc_js( __( "(Must be a postive integer)", 'jwl-ultimate-tinymce' ) ) . '",
noteColgroup4 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteColgroup5 : "' . __( "The HTML <strong><colgroup></strong> tag is used for specifying properties for a group of columns within a table.<br /><br />Must be used as a child of a <strong><table></strong> element, after any <strong><caption></strong> elements and before any <strong><thead></strong>, <strong><tbody></strong>, <strong><tfoot></strong>, and <strong><tr></strong> elements.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteData1 : "' . esc_js( __( "Enter Data Value:", 'jwl-ultimate-tinymce' ) ) . '",
noteData2 : "' . __( "The HTML <strong><data></strong> tag is used for providing a machine-readable version of its own contents. This can be useful in cases where your data needs to be in a certain format because it may be processed by a script, but this might not be the format that you'd like your users to see.<br /><br />For example, you might prefer to present numbers to your users written with letters (eg, One, Two, Three... etc), but you might also have a script that sorts the numbers in ascending or descending order. Such a script may require that the numbers are provided as numbers (eg, 1, 2, 3... etc) instead. The <strong><data></strong> tag enables you to overcome this by providing two numbers - one for the users (provided within the <strong><data></strong><strong></data></strong> tags) and one for the script (provided in the value attribute). This could look something like: <strong><data value='1'>One</data></strong><br /><br />Note that if the value is date or time related, use the <strong><time></strong> tag instead.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteDatalist1 : "' . esc_js( __( "Enter Datalist ID:", 'jwl-ultimate-tinymce' ) ) . '",
noteDatalist2 : "' . __( "The HTML <strong><datalist></strong> tag is used for providing an 'autocomplete' feature on form elements. It enables you to provide a list of predefined options to the user as they input data.<br /><br />For example, if a user began entering some text into a text field, a list would drop down with prefilled values that they could choose from.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteDiv1 : "' . esc_js( __( "Enter Style Attributes:", 'jwl-ultimate-tinymce' ) ) . '",
noteDiv2 : "' . esc_js( __( "(optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteDiv3 : "' . __( "The HTML <strong><div></strong> tag is used for defining a section of your document. With the <strong><div></strong> tag, you can group large sections of HTML elements together and format them with CSS.<br /><br />The difference between the <strong><div></strong> tag and the <strong><span></strong> tag is that the <strong><div></strong> tag is used with block-level elements whilst the <strong><span></strong> tag is used with inline elements.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteEmbed1 : "' . esc_js( __( "Enter Embed Source:", 'jwl-ultimate-tinymce' ) ) . '",
noteEmbed2 : "' . esc_js( __( "Enter Embed Type:", 'jwl-ultimate-tinymce' ) ) . '",
noteEmbed3 : "' . esc_js( __( "Enter Embed Width:", 'jwl-ultimate-tinymce' ) ) . '",
noteEmbed4 : "' . esc_js( __( "Enter Embed Height:", 'jwl-ultimate-tinymce' ) ) . '",
noteEmbed5 : "' . __( "The HTML <strong><embed></strong> tag is used for embedding an external application or interactive content into an HTML document.<br /><br />Note that the <strong><embed></strong> element is an empty element (no closing tag is used).<br /><br />The <strong><embed></strong> tag was introduced in HTML 5.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteEventsource1 : "' . esc_js( __( "Enter Eventsource Source URL:", 'jwl-ultimate-tinymce' ) ) . '",
noteEventsource2 : "' . esc_js( __( "(Must be a URL that uses the text/event-stream format.)", 'jwl-ultimate-tinymce' ) ) . '",
noteEventsource3 : "' . __( "The HTML <strong><eventsource></strong> tag represents a target for events generated by a remote server.<br /><br />Note that the <strong><eventsource></strong> element is an empty element (no closing tag is used).<br /><br />The <strong><eventsource></strong> tag was introduced in HTML 5.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteFieldset1 : "' . esc_js( __( "Enter Fieldset Name:", 'jwl-ultimate-tinymce' ) ) . '",
noteFieldset2 : "' . esc_js( __( "Enter Fieldset Form:", 'jwl-ultimate-tinymce' ) ) . '",
noteFieldset3 : "' . esc_js( __( "(Specifies the name of the fieldset.)", 'jwl-ultimate-tinymce' ) ) . '",
noteFieldset4 : "' . esc_js( __( "(Specifies a form to associate this fieldset element with. The value must be a ID of a form element.)", 'jwl-ultimate-tinymce' ) ) . '",
noteFieldset5 : "' . __( "The HTML <strong><fieldset></strong> tag is used for grouping related form elements.<br /><br />By using the fieldset tag and the <strong><legend></strong> tag, you can make your forms much easier to understand for your users. You can also do things like, disable all child elements within a <strong><fieldset></strong>.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteFigure1 : "' . esc_js( __( "Enter Figure ID:", 'jwl-ultimate-tinymce' ) ) . '",
noteFigure2 : "' . esc_js( __( "(Only numeric number, no pound sign)", 'jwl-ultimate-tinymce' ) ) . '",
noteFigure3 : "' . __( "The HTML <strong><figure></strong> tag is used for annotating illustrations, diagrams, photos, code listings, etc.<br /><br />You can use the <strong><figure></strong> element to associate a caption together with some embedded content, such as a graphic or video.<br /><br />You can use the <strong><figure></strong> element in conjunction with the <strong><figcaption></strong> element to provide a caption for the contents of your <strong><figure></strong> element.<br /><br />The <strong><figure></strong> tag was introduced in HTML 5.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteForm1 : "' . esc_js( __( "Enter Form Action URL:", 'jwl-ultimate-tinymce' ) ) . '",
noteForm2 : "' . esc_js( __( "Choose Form Autocomplete:", 'jwl-ultimate-tinymce' ) ) . '",
noteForm3 : "' . esc_js( __( "Select Form Encryption Type:", 'jwl-ultimate-tinymce' ) ) . '",
noteForm4 : "' . esc_js( __( "Select Form Method:", 'jwl-ultimate-tinymce' ) ) . '",
noteForm5 : "' . esc_js( __( "Enter Form Name:", 'jwl-ultimate-tinymce' ) ) . '",
noteForm6 : "' . esc_js( __( "Select Form Target:", 'jwl-ultimate-tinymce' ) ) . '",
noteForm7 : "' . esc_js( __( "(Specifies a URI/URL of the page that will process the form.)", 'jwl-ultimate-tinymce' ) ) . '",
noteForm8 : "' . esc_js( __( "(Specifies whether the form fields should be automatically completed based on the user's history.)", 'jwl-ultimate-tinymce' ) ) . '",
noteForm9 : "' . esc_js( __( "(Specifies the content type used to encode the form data set when it's submitted to the server.)", 'jwl-ultimate-tinymce' ) ) . '",
noteForm10 : "' . esc_js( __( "(Specifies the HTTP method to use when the form is submitted.)", 'jwl-ultimate-tinymce' ) ) . '",
noteForm11 : "' . esc_js( __( "(Assigns a name to the form. This is used when referencing the form with stylesheets or scripts.)", 'jwl-ultimate-tinymce' ) ) . '",
noteForm12 : "' . esc_js( __( "(Used for http response message headers. For example http-equiv can be used to periodically refresh the page, redirect to another page, etc.)", 'jwl-ultimate-tinymce' ) ) . '",
noteForm13 : "' . __( "The HTML <strong><form></strong> tag is used for declaring a form.<br /><br />The <strong><form></strong> tag is used in conjunction with form-associated elements. To create a form, you can nest form-associated elements inside the opening/closing <strong><form></strong> tags. You can also use the form attribute within those elements to reference the ID of the form to use.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteH11 : "' . esc_js( __( "Enter Style Attributes:", 'jwl-ultimate-tinymce' ) ) . '",
noteH12 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteH13 : "' . __( "The HTML <strong><h1></strong> tag is used for specifying level 1 headings.<br /><br />In HTML, there are 6 levels of headings (<strong><h1></strong> - <strong><h6></strong>) with <strong><h1></strong> the most important and <strong><h6></strong> the least important.<br /><br />Browsers typically render the various headings in different sizes - with <strong><h1></strong> being the largest and <strong><h6></strong> being the smallest.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteH21 : "' . esc_js( __( "Enter Style Attributes:", 'jwl-ultimate-tinymce' ) ) . '",
noteH22 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteH23 : "' . __( "The HTML <strong><h2></strong> tag is used for specifying level 2 headings.<br /><br />In HTML, there are 6 levels of headings (<strong><h1></strong> - <strong><h6></strong>) with <strong><h1></strong> the most important and <strong><h6></strong> the least important.<br /><br />Browsers typically render the various headings in different sizes - with <strong><h1></strong> being the largest and <strong><h6></strong> being the smallest.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteH31 : "' . esc_js( __( "Enter Style Attributes:", 'jwl-ultimate-tinymce' ) ) . '",
noteH32 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteH33 : "' . __( "The HTML <strong><h3></strong> tag is used for specifying level 3 headings.<br /><br />In HTML, there are 6 levels of headings (<strong><h1></strong> - <strong><h6></strong>) with <strong><h1></strong> the most important and <strong><h6></strong> the least important.<br /><br />Browsers typically render the various headings in different sizes - with <strong><h1></strong> being the largest and <strong><h6></strong> being the smallest.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteH41 : "' . esc_js( __( "Enter Style Attributes:", 'jwl-ultimate-tinymce' ) ) . '",
noteH42 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteH43 : "' . __( "The HTML <strong><h4></strong> tag is used for specifying level 4 headings.<br /><br />In HTML, there are 6 levels of headings (<strong><h1></strong> - <strong><h6></strong>) with <strong><h1></strong> the most important and <strong><h6></strong> the least important.<br /><br />Browsers typically render the various headings in different sizes - with <strong><h1></strong> being the largest and <strong><h6></strong> being the smallest.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteH51 : "' . esc_js( __( "Enter Style Attributes:", 'jwl-ultimate-tinymce' ) ) . '",
noteH52 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteH53 : "' . __( "The HTML <strong><h5></strong> tag is used for specifying level 5 headings.<br /><br />In HTML, there are 6 levels of headings (<strong><h1></strong> - <strong><h6></strong>) with <strong><h1></strong> the most important and <strong><h6></strong> the least important.<br /><br />Browsers typically render the various headings in different sizes - with <strong><h1></strong> being the largest and <strong><h6></strong> being the smallest.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteH61 : "' . esc_js( __( "Enter Style Attributes:", 'jwl-ultimate-tinymce' ) ) . '",
noteH62 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteH63 : "' . __( "The HTML <strong><h6></strong> tag is used for specifying level 6 headings.<br /><br />In HTML, there are 6 levels of headings (<strong><h1></strong> - <strong><h6></strong>) with <strong><h1></strong> the most important and <strong><h6></strong> the least important.<br /><br />Browsers typically render the various headings in different sizes - with <strong><h1></strong> being the largest and <strong><h6></strong> being the smallest.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteHr1 : "' . esc_js( __( "Enter Style Attributes:", 'jwl-ultimate-tinymce' ) ) . '",
noteHr2 : "' . esc_js( __( "(optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteHr3 : "' . __( "The HTML <strong><hr></strong> tag is used for specifying a horizontal rule in an HTML document.<br /><br />The intention behind the <strong><hr></strong> tag is that it indicates a paragraph-level thematic break. For example, a scene change in a story, or a transition to another topic within a section of a reference book.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteIframe1 : "' . esc_js( __( "Enter iFrame Url:", 'jwl-ultimate-tinymce' ) ) . '",
noteIframe2 : "' . esc_js( __( "Enter iFrame Width:", 'jwl-ultimate-tinymce' ) ) . '",
noteIframe3 : "' . esc_js( __( "Enter iFrame Height:", 'jwl-ultimate-tinymce' ) ) . '",
noteIframe4 : "' . esc_js( __( "Enter iFrame Name:", 'jwl-ultimate-tinymce' ) ) . '",
noteIframe5 : "' . esc_js( __( "(Location of the frame contents (for example, the HTML page to be loaded into the frame).)", 'jwl-ultimate-tinymce' ) ) . '",
noteIframe6 : "' . esc_js( __( "(Specifies the width of the inline frame.)", 'jwl-ultimate-tinymce' ) ) . '",
noteIframe7 : "' . esc_js( __( "(Specifies the height of the inline frame.)", 'jwl-ultimate-tinymce' ) ) . '",
noteIframe8 : "' . esc_js( __( "(Assigns a name to a frame. This is useful for loading contents into one frame from another.)", 'jwl-ultimate-tinymce' ) ) . '",
noteIframe9 : "' . __( "The HTML <strong><iframe></strong> tag is used to specify an inline frame.<br /><br />An inline frame allows you to embed another document within the current HTML document. The HTML 5 specification refers to this as a 'nested browsing context'.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteImg1 : "' . esc_js( __( "Enter Image Source:", 'jwl-ultimate-tinymce' ) ) . '",
noteImg2 : "' . esc_js( __( "Enter Image Title Description:", 'jwl-ultimate-tinymce' ) ) . '",
noteImg3 : "' . esc_js( __( "Enter Image Alternate Description:", 'jwl-ultimate-tinymce' ) ) . '",
noteImg4 : "' . esc_js( __( "Enter Image Width:", 'jwl-ultimate-tinymce' ) ) . '",
noteImg5 : "' . esc_js( __( "Enter Image Height:", 'jwl-ultimate-tinymce' ) ) . '",
noteImg6 : "' . esc_js( __( "Enter Image UseMap ID:", 'jwl-ultimate-tinymce' ) ) . '",
noteImg7 : "' . esc_js( __( "Enter List Item Style Attributes:", 'jwl-ultimate-tinymce' ) ) . '",
noteImg8 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteImg9 : "' . __( "The HTML <strong><img></strong> tag is used for embedding images into an HTML document.<br /><br />The value given by the <strong><em>src</em></strong> attribute is the URL to the embedded image. The value of the <strong><em>alt</em></strong> attribute appears if the image cannot be loaded.<br /><br />To link an image to another document, you simply nest the <strong><img></strong> tag inside <strong><a></strong> tags.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteInput1 : "' . esc_js( __( "Choose Input Type:", 'jwl-ultimate-tinymce' ) ) . '",
noteInput2 : "' . esc_js( __( "Enter Input Name:", 'jwl-ultimate-tinymce' ) ) . '",
noteInput3 : "' . esc_js( __( "Enter Input Value:", 'jwl-ultimate-tinymce' ) ) . '",
noteInput4 : "' . esc_js( __( "Enter Input Alternate Description:", 'jwl-ultimate-tinymce' ) ) . '",
noteInput5 : "' . esc_js( __( "Enter Input Width:", 'jwl-ultimate-tinymce' ) ) . '",
noteInput6 : "' . esc_js( __( "Enter Input Height:", 'jwl-ultimate-tinymce' ) ) . '",
noteInput7 : "' . esc_js( __( "Enter Input Placeholder:", 'jwl-ultimate-tinymce' ) ) . '",
noteInput8 : "' . esc_js( __( "(Specifies the type of control.)", 'jwl-ultimate-tinymce' ) ) . '",
noteInput9 : "' . esc_js( __( "(Assigns a name to the input control.)", 'jwl-ultimate-tinymce' ) ) . '",
noteInput10 : "' . esc_js( __( "(Specifies a default value for the control. Note: If type='checkbox' or type='radio' this attribute is required.)", 'jwl-ultimate-tinymce' ) ) . '",
noteInput11 : "' . esc_js( __( "(This specifies text to be used in case the browser/user agent can't render the input control.)", 'jwl-ultimate-tinymce' ) ) . '",
noteInput12 : "' . esc_js( __( "(Specifies the width of the control.)", 'jwl-ultimate-tinymce' ) ) . '",
noteInput13 : "' . esc_js( __( "(Specifies the height of the control.)", 'jwl-ultimate-tinymce' ) ) . '",
noteInput14 : "' . esc_js( __( "(Specifies a short hint (a word or short phrase) intended to aid the user with data entry.)", 'jwl-ultimate-tinymce' ) ) . '",
noteInput15 : "' . __( "The HTML <strong><input></strong> tag is used within a form to declare an input element - a control that allows the user to input data.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteLabel1 : "' . esc_js( __( "Enter Style Attributes:", 'jwl-ultimate-tinymce' ) ) . '",
noteLabel2 : "' . esc_js( __( "Enter Label Form ID:", 'jwl-ultimate-tinymce' ) ) . '",
noteLabel3 : "' . esc_js( __( "(Specifies the input control that this label is for. This value must match the input control's 'id' attribute.)", 'jwl-ultimate-tinymce' ) ) . '",
noteLabel4 : "' . esc_js( __( "(Specifies the ID of a form to which this control belongs.)", 'jwl-ultimate-tinymce' ) ) . '",
noteLabel5 : "' . __( "The HTML <strong><label></strong> tag is used for adding a label to a form control. It can also be used on <strong><meter></strong> and <strong><progress></strong> elements, as well as the <strong><output></strong> element.<br /><br />If you use the <strong><label></strong> tag, in some browsers, users can select a radio button or checkbox option by clicking on its label.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteLi1 : "' . esc_js( __( "Enter List Item Value:", 'jwl-ultimate-tinymce' ) ) . '",
noteLi2 : "' . esc_js( __( "Enter List Item Style Attributes:", 'jwl-ultimate-tinymce' ) ) . '",
noteLi3 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteLi4 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteLi5 : "' . __( "The HTML <strong><li></strong> tag is used for specifying a list item in ordered, unordered, directory, and menu lists.<br /><br />This element can be used in conjunction with the <strong><ol></strong>, <strong><ul></strong>, and <strong><menu></strong> elements.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteLink1 : "' . esc_js( __( "Enter Base HREF Address:", 'jwl-ultimate-tinymce' ) ) . '",
noteLink2 : "' . esc_js( __( "Select Relative Value:", 'jwl-ultimate-tinymce' ) ) . '",
noteLink3 : "' . __( "The HTML <strong><link></strong> tag is used for defining a link to an external document. It is placed in in the <strong><head></strong> section of the document.<br /><br />The <strong><link></strong> tag is commonly used for linking to an external style sheet.<br /><br />Despite its name (\'link\'), the link tag is <strong>not</strong> used for creating a hyperlink to another HTML document. If you need to link to another HTML document, use the HTML <strong><a></strong> tag.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteMap1 : "' . esc_js( __( "Enter Map ID:", 'jwl-ultimate-tinymce' ) ) . '",
noteMap2 : "' . esc_js( __( "Enter Map Name:", 'jwl-ultimate-tinymce' ) ) . '",
noteMap3 : "' . __( "The HTML <strong><map></strong> tag is used for declaring an image map.<br /><br />The <strong><map></strong> tag is used in conjunction with the <strong><area></strong> tag and <strong><img></strong> tag to specify clickable areas (sometimes referred to as 'hot spots') on an image.<br /><br />To create an image map, you use the <strong><map></strong> tag to declare the image map, and the <strong><area></strong> tag (nested within the <strong><map></strong> tag) to define the clickable areas. The <strong><img></strong> tag can be defined elsewhere on the page, and is linked to the <strong><map></strong> element using the ID attribute.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteMark1 : "' . esc_js( __( "Enter Style Attributes:", 'jwl-ultimate-tinymce' ) ) . '",
noteMark2 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteMark3 : "' . __( "The HTML <strong><mark></strong> tag is used for indicating text as marked or highlighted for reference purposes, due to its relevance in another context.<br /><br />The <strong><mark></strong> tag was introduced in HTML 5.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteMeta1 : "' . esc_js( __( "Enter Meta Name:", 'jwl-ultimate-tinymce' ) ) . '",
noteMeta2 : "' . esc_js( __( "Enter Meta Content:", 'jwl-ultimate-tinymce' ) ) . '",
noteMeta3 : "' . esc_js( __( "Enter Meta Character Set:", 'jwl-ultimate-tinymce' ) ) . '",
noteMeta4 : "' . esc_js( __( "Enter Meta http-equiv:", 'jwl-ultimate-tinymce' ) ) . '",
noteMeta5 : "' . esc_js( __( "(Name for the property.)", 'jwl-ultimate-tinymce' ) ) . '",
noteMeta6 : "' . esc_js( __( "(Specifies the property's value.)", 'jwl-ultimate-tinymce' ) ) . '",
noteMeta7 : "' . esc_js( __( "(Specifies the character encoding used by the document.)", 'jwl-ultimate-tinymce' ) ) . '",
noteMeta8 : "' . esc_js( __( "(Used for http response message headers. For example http-equiv can be used to periodically refresh the page, redirect to another page, etc.)", 'jwl-ultimate-tinymce' ) ) . '",
noteMeta9 : "' . __( "The HTML <strong><meta></strong> tag is used for declaring metadata for the HTML document.<br /><br />Metadata can include document decription, keywords, author etc. It can also be used to refresh the page or set cookies.<br /><br />The meta tag is placed between the opening/closing <strong><head></strong> <strong></head></strong> tags.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteMeter1 : "' . esc_js( __( "Enter Title:", 'jwl-ultimate-tinymce' ) ) . '",
noteMeter2 : "' . esc_js( __( "Enter Value:", 'jwl-ultimate-tinymce' ) ) . '",
noteMeter3 : "' . esc_js( __( "Enter Minimum:", 'jwl-ultimate-tinymce' ) ) . '",
noteMeter4 : "' . esc_js( __( "Enter Low:", 'jwl-ultimate-tinymce' ) ) . '",
noteMeter5 : "' . esc_js( __( "Enter High:", 'jwl-ultimate-tinymce' ) ) . '",
noteMeter6 : "' . esc_js( __( "Enter Max:", 'jwl-ultimate-tinymce' ) ) . '",
noteMeter7 : "' . esc_js( __( "Enter Optimum:", 'jwl-ultimate-tinymce' ) ) . '",
noteMeter8 : "' . esc_js( __( "(Specifies the title.)", 'jwl-ultimate-tinymce' ) ) . '",
noteMeter9 : "' . esc_js( __( "(Specifies the 'measured' value.)", 'jwl-ultimate-tinymce' ) ) . '",
noteMeter10 : "' . esc_js( __( "(Specifies the lower bound of the range. Default is 0.)", 'jwl-ultimate-tinymce' ) ) . '",
noteMeter11 : "' . esc_js( __( "(Specifies the range that is considered to be a 'low' value.)", 'jwl-ultimate-tinymce' ) ) . '",
noteMeter12 : "' . esc_js( __( "(Specifies the range that is considered to be a 'high' value.)", 'jwl-ultimate-tinymce' ) ) . '",
noteMeter13 : "' . esc_js( __( "(Specifies the upper bound of the range. Default is 1.)", 'jwl-ultimate-tinymce' ) ) . '",
noteMeter14 : "' . esc_js( __( "(Specifies the value that is considered to be the 'optimum', or best, value. If this value is higher than the 'high' value then it indicates that the higher the value, the better. If it's lower than the 'low' mark then it indicates that lower values are better. If it is in between then it indicates that neither high nor low values are good.)", 'jwl-ultimate-tinymce' ) ) . '",
noteMeter15 : "' . __( "The HTML <strong><meter></strong> tag is used for indicating a scalar measurement within a known range, or a fractional value.<br /><br />Also known as a <em>gauge</em>, usage could include displaying disk usage, the amount raised during fundraising activities, or the relevance of a search query result.<br /><br />It is important to note that the <strong><meter></strong> element is used to represent a <em>range</em>. It is not appropriate to use this element for representing a single number (such as how many children someone has) unless there is a known maximum number.<br /><br />The <strong><meter></strong> tag was introduced in HTML 5.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteNav1 : "' . esc_js( __( "Enter Style Attributes:", 'jwl-ultimate-tinymce' ) ) . '",
noteNav2 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteNav3 : "' . __( "The HTML <strong><nav></strong> tag is used for declaring a navigational section of the HTML document.<br /><br />Websites typically have sections dedicated to navigational links - links that enable the user to navigate the site. These links should be placed inside a <strong><nav></strong> tag.<br /><br />Note that links in the footer section should be marked up inside <strong><footer></strong> tags as opposed to <strong><nav></strong> tags.<br /><br />The <strong><nav></strong> tag was introduced in HTML 5.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteObject1 : "' . esc_js( __( "Enter Object Data Url:", 'jwl-ultimate-tinymce' ) ) . '",
noteObject2 : "' . esc_js( __( "Enter Object Type:", 'jwl-ultimate-tinymce' ) ) . '",
noteObject3 : "' . esc_js( __( "Enter Object Name:", 'jwl-ultimate-tinymce' ) ) . '",
noteObject4 : "' . esc_js( __( "Enter Object Width:", 'jwl-ultimate-tinymce' ) ) . '",
noteObject5 : "' . esc_js( __( "Enter Object Height:", 'jwl-ultimate-tinymce' ) ) . '",
noteObject6 : "' . esc_js( __( "Enter Enter Object Form ID:", 'jwl-ultimate-tinymce' ) ) . '",
noteObject7 : "' . esc_js( __( "Enter Object UseMap (if applicable):", 'jwl-ultimate-tinymce' ) ) . '",
noteObject8 : "' . esc_js( __( "(Specifies the location of data to be used by the object. The value must be a valid URL.)", 'jwl-ultimate-tinymce' ) ) . '",
noteObject9 : "' . esc_js( __( "(Specifies the object type as specified in the data attribute. Must be a valid MIME type.)", 'jwl-ultimate-tinymce' ) ) . '",
noteObject10 : "' . esc_js( __( "(Assigns the name of the object.)", 'jwl-ultimate-tinymce' ) ) . '",
noteObject11 : "' . esc_js( __( "(Specifies the width, in pixels, to display the external content.)", 'jwl-ultimate-tinymce' ) ) . '",
noteObject12 : "' . esc_js( __( "(Specifies the height, in pixels, to display the external content.)", 'jwl-ultimate-tinymce' ) ) . '",
noteObject13 : "' . esc_js( __( "(Specifies the ID of a form to which this object belongs.)", 'jwl-ultimate-tinymce' ) ) . '",
noteObject14 : "' . esc_js( __( "(Specifies the name of an image map to use on this object.)", 'jwl-ultimate-tinymce' ) ) . '",
noteObject15 : "' . __( "The HTML <strong><object></strong> tag is used for embedding an object within an HTML document. Use this tag to embed multimedia in your web pages.<br /><br />You can use the <strong><param></strong> tag to pass parameters to plugins that have been embedded using the <strong><object></strong> tag.<br /><br />You can also use the <strong><object></strong> tag to embed another webpage into your HTML document.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteOl1 : "' . esc_js( __( "Enter List Start Number:", 'jwl-ultimate-tinymce' ) ) . '",
noteOl2 : "' . esc_js( __( "Select List Number Type:", 'jwl-ultimate-tinymce' ) ) . '",
noteOl3 : "' . __( "The HTML <strong><ol></strong> tag is used for specifying an ordered list.<br /><br />Ordered lists are often numbered (1. 2. 3... etc), however, they don't necessarily have to be. The main point of an ordered list is that the list items have been ordered, such that changing the order would change the meaning of the list (or document).<br /><br />A list of instructions is a good candidate for an ordered list, with each list item representing a different step. Each step would need to be completed before the next step is started.<br /><br />This element is used in conjunction with the <strong><li></strong> element. The <strong><ol></strong> tag declares the ordered list, and the <strong><li></strong> tag declares each list item.<br /><br />You can also use the CSS <strong><em>list-style-type</em></strong> property to change the numbering system. For example, you could use roman numerals instead of decimal.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteOptgroup1 : "' . esc_js( __( "Enter Option Group Label:", 'jwl-ultimate-tinymce' ) ) . '",
noteOptgroup2 : "' . esc_js( __( "(Required)", 'jwl-ultimate-tinymce' ) ) . '",
noteOptgroup3 : "' . __( "The HTML <strong><optgroup></strong> tag is used for grouping related options within your select list. This makes it easier for users to comprehend the options when looking at a large list.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteOption1 : "' . esc_js( __( "Enter Option Label:", 'jwl-ultimate-tinymce' ) ) . '",
noteOption2 : "' . esc_js( __( "Enter Option Value:", 'jwl-ultimate-tinymce' ) ) . '",
noteOption3 : "' . esc_js( __( "Enter Option Name:", 'jwl-ultimate-tinymce' ) ) . '",
noteOption4 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteOption5 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteOption6 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteOption7 : "' . __( "The HTML <strong><option></strong> tag is used for defining option items within a list.<br /><br />This element can be used in conjunction with the <strong><select></strong> or <strong><datalist></strong> elements.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteOutput1 : "' . esc_js( __( "Enter Output For:", 'jwl-ultimate-tinymce' ) ) . '",
noteOutput2 : "' . esc_js( __( "Enter Output Form Reference:", 'jwl-ultimate-tinymce' ) ) . '",
noteOutput3 : "' . esc_js( __( "Enter Output Name:", 'jwl-ultimate-tinymce' ) ) . '",
noteOutput4 : "' . esc_js( __( "(The value must be one or more IDs (separated by a space) of elements within the same document.)", 'jwl-ultimate-tinymce' ) ) . '",
noteOutput5 : "' . esc_js( __( "(Associates the output with a form.)", 'jwl-ultimate-tinymce' ) ) . '",
noteOutput6 : "' . esc_js( __( "(Specifies the name of this element.)", 'jwl-ultimate-tinymce' ) ) . '",
noteOutput7 : "' . __( "The HTML <strong><output></strong> tag is used for representing the result of a calculation, such as one performed by a script.<br /><br />The <strong><output></strong> tag was introduced in HTML 5.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteP1 : "' . esc_js( __( "Enter Style Attributes:", 'jwl-ultimate-tinymce' ) ) . '",
noteP2 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteP3 : "' . __( "The HTML <strong><p></strong> tag is used for defining a paragraph.<br /><br />In certain situations, the <p> tag is not the best tag to use. It's a good idea to become familiar with other HTML tags that have a more specific purpose. Examples include <strong><footer></strong>, <strong><address></strong> and <strong><blockquote></strong> to name a few.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteParam1 : "' . esc_js( __( "Enter Name Attribute:", 'jwl-ultimate-tinymce' ) ) . '",
noteParam2 : "' . esc_js( __( "Enter Value Attribute:", 'jwl-ultimate-tinymce' ) ) . '",
noteParam3 : "' . esc_js( __( "(Required)", 'jwl-ultimate-tinymce' ) ) . '",
noteParam4 : "' . esc_js( __( "(Required)", 'jwl-ultimate-tinymce' ) ) . '",
noteParam5 : "' . __( "The HTML <strong><param></strong> tag is used for passing parameters to an embedded object.<br /><br />This tag is used in conjunction with the <strong><object></strong> tag.<br /><br />To use the <strong><param></strong> tag, you need to nest it inside a <strong><object></strong> element.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
notePre1 : "' . esc_js( __( "Enter Style Attributes:", 'jwl-ultimate-tinymce' ) ) . '",
notePre2 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '",
notePre3 : "' . __( "The HTML <strong><pra></strong> tag is used for indicating preformatted text. The code tag surrounds the code being marked up.<br /><br />Browsers normally render <strong><pra></strong> text in a fixed-pitched font, with whitespace in tact, and without word wrap.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteProgress1 : "' . esc_js( __( "Enter Progress Value:", 'jwl-ultimate-tinymce' ) ) . '",
noteProgress2 : "' . esc_js( __( "Enter Progress Max:", 'jwl-ultimate-tinymce' ) ) . '",
noteProgress3 : "' . esc_js( __( "(Required)", 'jwl-ultimate-tinymce' ) ) . '",
noteProgress4 : "' . esc_js( __( "(Required)", 'jwl-ultimate-tinymce' ) ) . '",
noteProgress5 : "' . __( "The HTML <strong><progress></strong> tag is used for representing the progress of a task.<br /><br />This element could be used in conjunction with JavaScript to display the progress of a task or process as it is underway.<br /><br />The <strong><progress></strong> tag was introduced in HTML 5.<br /><br /><strong>Tip:</strong> The <strong><progress></strong> is not suitable for representing a gauge (such as disk space usage or a tally of votes). To represent a gauge, use the <strong><meter></strong> tag instead.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteScript1 : "' . esc_js( __( "Enter Script Source:", 'jwl-ultimate-tinymce' ) ) . '",
noteScript2 : "' . esc_js( __( "Enter Script Type:", 'jwl-ultimate-tinymce' ) ) . '",
noteScript3 : "' . esc_js( __( "Enter Script Character Set:", 'jwl-ultimate-tinymce' ) ) . '",
noteScript4 : "' . esc_js( __( "(Specifies a URI/URL of an external script.)", 'jwl-ultimate-tinymce' ) ) . '",
noteScript5 : "' . esc_js( __( "(Specifies the scripting language as a content-type (MIME type).)", 'jwl-ultimate-tinymce' ) ) . '",
noteScript6 : "' . esc_js( __( "(Defines the character encoding that the script uses.)", 'jwl-ultimate-tinymce' ) ) . '",
noteScript7 : "' . __( "The HTML <strong><script></strong> tag is used for declaring a script (such as JavaScript) within your HTML document.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteSelect1 : "' . esc_js( __( "Enter Select Name:", 'jwl-ultimate-tinymce' ) ) . '",
noteSelect2 : "' . esc_js( __( "Enter Select ID:", 'jwl-ultimate-tinymce' ) ) . '",
noteSelect3 : "' . esc_js( __( "Enter Select Value:", 'jwl-ultimate-tinymce' ) ) . '",
noteSelect4 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteSelect5 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteSelect6 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteSelect7 : "' . __( "The HTML <strong><select></strong> tag is used for defining a select list.<br /><br />This element is used in conjunction with the <strong><option></strong> element to produce a list of options that the user can choose from.<br /><br />Also see <strong><optgroup></strong> element for grouping your option items.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteSource1 : "' . esc_js( __( "Enter Source 'Source':", 'jwl-ultimate-tinymce' ) ) . '",
noteSource2 : "' . esc_js( __( "Enter Source Type:", 'jwl-ultimate-tinymce' ) ) . '",
noteSource3 : "' . esc_js( __( "Enter Source Media:", 'jwl-ultimate-tinymce' ) ) . '",
noteSource4 : "' . esc_js( __( "(Specifies the location of the audio/video file. Its value must be the URI of an audio file.)", 'jwl-ultimate-tinymce' ) ) . '",
noteSource5 : "' . esc_js( __( "(Specifies the type of the embedded content. If specified, the value must be a MIME type.)", 'jwl-ultimate-tinymce' ) ) . '",
noteSource6 : "' . esc_js( __( "(Specifies the type of media resource, so the browser can determine whether it can play it or not.)", 'jwl-ultimate-tinymce' ) ) . '",
noteSource7 : "' . __( "The HTML <strong><source></strong> tag is used to specify multiple media resources on media elements (such as <strong><audio></strong> and <strong><video></strong>).<br /><br />This element allows you to specify alternative video and audio files which the browser may choose from based on its media type or codec support.<br /><br />The <strong><source></strong> tag was introduced in HTML 5.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteSpan1 : "' . esc_js( __( "Enter Style Attributes:", 'jwl-ultimate-tinymce' ) ) . '",
noteSpan2 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteSpan3 : "' . __( "The HTML <strong><span></strong> tag is used for grouping and applying styles to inline elements.<br /><br />The difference between the <strong><span></strong> tag and the <strong><div></strong> tag is that the <strong><span></strong> tag is used with inline elements whilst the <strong><div></strong> tag is used with block-level content.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteStyle1 : "' . esc_js( __( "Enter Style Type:", 'jwl-ultimate-tinymce' ) ) . '",
noteStyle2 : "' . esc_js( __( "Enter Style Media:", 'jwl-ultimate-tinymce' ) ) . '",
noteStyle3 : "' . esc_js( __( "(Specifies the style sheet language as a content-type (MIME type).)", 'jwl-ultimate-tinymce' ) ) . '",
noteStyle4 : "' . esc_js( __( "(Specifies the device that the styles apply to. Must be a valid media query.)", 'jwl-ultimate-tinymce' ) ) . '",
noteStyle5 : "' . __( "The HTML <strong><style></strong> tag is used for declaring style sheets within your HTML document.<br /><br />Each HTML document can contain multiple <strong><style></strong> tags.<br /><br />In HTML 5, the <strong><style></strong> tag can be used within the <strong><body></strong> element (or its child elements) as long as the scoped attribute is used. If the scoped attribute is not used, each <strong><style></strong> tag must be located between the <strong><head></strong> tags (or a <strong><noscript></strong> element that is a child of a <strong><head></strong> element).<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteTable1 : "' . esc_js( __( "Enter Table Border:", 'jwl-ultimate-tinymce' ) ) . '",
noteTable2 : "' . esc_js( __( "Enter Table Cell Padding:", 'jwl-ultimate-tinymce' ) ) . '",
noteTable3 : "' . esc_js( __( "Enter Table Cell Spacing:", 'jwl-ultimate-tinymce' ) ) . '",
noteTable4 : "' . esc_js( __( "Enter Table Summary:", 'jwl-ultimate-tinymce' ) ) . '",
noteTable5 : "' . esc_js( __( "Enter Table Width:", 'jwl-ultimate-tinymce' ) ) . '",
noteTable6 : "' . esc_js( __( "Enter Table Style Attributes:", 'jwl-ultimate-tinymce' ) ) . '",
noteTable7 : "' . esc_js( __( "(Specifies the width, style, and color of the border.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTable8 : "' . esc_js( __( "(Specifies the space between the cell wall and the cell content.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTable9 : "' . esc_js( __( "(Specifies the space between cells.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTable10 : "' . esc_js( __( "(Specifies a summary of the content of a table.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTable11 : "' . esc_js( __( "(Specifies the width of the table.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTable12 : "' . esc_js( __( "(Specifies custom css styles.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTable13 : "' . __( "The HTML <strong><table></strong> tag is used for defining a table. The <strong><table></strong> tag contains other tags that define the structure of the table.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteTd1 : "' . esc_js( __( "Enter TD Column Span:", 'jwl-ultimate-tinymce' ) ) . '",
noteTd2 : "' . esc_js( __( "Enter TD Row Span:", 'jwl-ultimate-tinymce' ) ) . '",
noteTd3 : "' . esc_js( __( "Select TD Vertical Align:", 'jwl-ultimate-tinymce' ) ) . '",
noteTd4 : "' . esc_js( __( "Select TD Horizontal Align:", 'jwl-ultimate-tinymce' ) ) . '",
noteTd5 : "' . esc_js( __( "Enter TD Headers:", 'jwl-ultimate-tinymce' ) ) . '",
noteTd6 : "' . esc_js( __( "Select TD Scope:", 'jwl-ultimate-tinymce' ) ) . '",
noteTd7 : "' . esc_js( __( "(Specifies the number of columns the current cell spans across.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTd8 : "' . esc_js( __( "(Specifies the number of rows the current cell spans across.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTd9 : "' . esc_js( __( "(Vertically aligns the content in a cell.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTd10 : "' . esc_js( __( "(Horizontally aligns the content in a cell.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTd11 : "' . esc_js( __( "(Specifies a space-separated list of header cells that contain information about this cell.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTd12 : "' . esc_js( __( "(This attribute is used on header cells and specifies the cells that will use this header's information.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTd13 : "' . __( "The HTML <strong><td></strong> tag is used for specifying a cell (or table data) within a table.<br /><br />This tag must be nested inside a <strong><tr></strong> tag, which in turn must also be nested correctly.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteTextarea1 : "' . esc_js( __( "Enter Textarea Name:", 'jwl-ultimate-tinymce' ) ) . '",
noteTextarea2 : "' . esc_js( __( "Enter Textarea Rows:", 'jwl-ultimate-tinymce' ) ) . '",
noteTextarea3 : "' . esc_js( __( "Enter Textarea Columns:", 'jwl-ultimate-tinymce' ) ) . '",
noteTextarea4 : "' . esc_js( __( "Enter Textarea Form ID:", 'jwl-ultimate-tinymce' ) ) . '",
noteTextarea5 : "' . esc_js( __( "Enter Textarea Placeholder Text:", 'jwl-ultimate-tinymce' ) ) . '",
noteTextarea6 : "' . esc_js( __( "(Assigns a name to the input control.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTextarea7 : "' . esc_js( __( "(The value must be a non-negative integer greater than zero (i.e. a number). The default value is 2.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTextarea8 : "' . esc_js( __( "(The value must be a non-negative integer greater than zero (i.e. a number). The default value is 20.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTextarea9 : "' . esc_js( __( "(Specifies the ID of a form to which this control belongs.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTextarea10 : "' . esc_js( __( "(Provides a hint to the user to help them complete the textarea.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTextarea11 : "' . __( "The HTML <strong><textarea></strong> tag is used within a form to declare a textarea element - a control that allows the user to input text over multiple rows.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteTh1 : "' . esc_js( __( "Enter TH Column Span:", 'jwl-ultimate-tinymce' ) ) . '",
noteTh2 : "' . esc_js( __( "Enter TH Row Span:", 'jwl-ultimate-tinymce' ) ) . '",
noteTh3 : "' . esc_js( __( "Select TH Vertical Align:", 'jwl-ultimate-tinymce' ) ) . '",
noteTh4 : "' . esc_js( __( "Select TH Horizontal Align:", 'jwl-ultimate-tinymce' ) ) . '",
noteTh5 : "' . esc_js( __( "Enter TH Headers:", 'jwl-ultimate-tinymce' ) ) . '",
noteTh6 : "' . esc_js( __( "Select TH Scope:", 'jwl-ultimate-tinymce' ) ) . '",
noteTh7 : "' . esc_js( __( "(Specifies the number of columns the current cell spans across.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTh8 : "' . esc_js( __( "(Specifies the number of rows the current cell spans across.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTh9 : "' . esc_js( __( "(Vertically aligns the content in a cell.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTh10 : "' . esc_js( __( "(Horizontally aligns the content in a cell.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTh11 : "' . esc_js( __( "(Specifies a space-separated list of header cells that contain information about this cell.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTh12 : "' . esc_js( __( "(This attribute is used on header cells and specifies the cells that will use this header's information.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTh13 : "' . __( "The HTML <strong><th></strong> tag is used for specifying a header cell (or table header) within a table.<br /><br />This tag must be nested inside a <strong><tr></strong> tag, which in turn must be nested inside a <strong><table></strong> tag.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteTr1 : "' . esc_js( __( "Select TR Vertical Align:", 'jwl-ultimate-tinymce' ) ) . '",
noteTr2 : "' . esc_js( __( "Select TR Horizontal Align:", 'jwl-ultimate-tinymce' ) ) . '",
noteTr3 : "' . esc_js( __( "Enter TR Style Attributes:", 'jwl-ultimate-tinymce' ) ) . '",
noteTr4 : "' . esc_js( __( "(Vertically aligns the content in a cell.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTr5 : "' . esc_js( __( "(Horizontally aligns the content in a cell.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTr6 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteTr7 : "' . __( "The HTML <strong><tr></strong> tag is used for specifying a table row within a table. A table row contains one or more <strong><td></strong> and/or <strong><th></strong> tags which determine individual cells/columns.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteTrack1 : "' . esc_js( __( "Enter Track Source:", 'jwl-ultimate-tinymce' ) ) . '",
noteTrack2 : "' . esc_js( __( "Enter Track Source Language:", 'jwl-ultimate-tinymce' ) ) . '",
noteTrack3 : "' . esc_js( __( "Enter Track Kind:", 'jwl-ultimate-tinymce' ) ) . '",
noteTrack4 : "' . esc_js( __( "Enter Track Label:", 'jwl-ultimate-tinymce' ) ) . '",
noteTrack5 : "' . esc_js( __( "(Specifies the URL of the text track data. Required attribute.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTrack6 : "' . esc_js( __( "(Specifies the language of the text track. The value must be a valid BCP 47 language tag. This attribute is required if the element's kind attribute is 'subtitles'.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTrack7 : "' . esc_js( __( "(Specifies the kind of text track. This attribute is an enumerated attribute.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTrack8 : "' . esc_js( __( "(Specifies that the track is to be enabled if the user's preferences do not indicate that another track would be more appropriate. There must not be more than one track element with the same parent node with the default attribute specified.)", 'jwl-ultimate-tinymce' ) ) . '",
noteTrack9 : "' . __( "The HTML <strong><track></strong> tag is used to specify external timed text tracks for media elements (i.e. the <strong><video></strong> element and the <strong><audio></strong> element). The text tracks specified with the <strong><track></strong> tag could include subtitles, captions, descriptions, chapters, and metadata.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteUl1 : "' . esc_js( __( "Enter Style Attributes:", 'jwl-ultimate-tinymce' ) ) . '",
noteUl2 : "' . esc_js( __( "(Optional)", 'jwl-ultimate-tinymce' ) ) . '",
noteUl3 : "' . __( "The HTML <strong><ul></strong> tag is used for specifying an unordered list (or un-numbered list).<br /><br />Also see <strong><ol></strong> for ordered (numbered) lists and <strong><menu></strong> for menu lists.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
noteVideo1 : "' . esc_js( __( "Enter Video Source:", 'jwl-ultimate-tinymce' ) ) . '",
noteVideo2 : "' . esc_js( __( "Enter Video Poster:", 'jwl-ultimate-tinymce' ) ) . '",
noteVideo3 : "' . esc_js( __( "Enter Video Width:", 'jwl-ultimate-tinymce' ) ) . '",
noteVideo4 : "' . esc_js( __( "Enter Video Height:", 'jwl-ultimate-tinymce' ) ) . '",
noteVideo5 : "' . esc_js( __( "(Specifies the location of the video file. Its value must be the URI of a video file.)", 'jwl-ultimate-tinymce' ) ) . '",
noteVideo6 : "' . esc_js( __( "(Specifies an image to use while the video is unavailable (i.e. it hasn't loaded yet). This is typically an image of one of the first frames of the video. If supplied, the value must be a valid URL of an image.)", 'jwl-ultimate-tinymce' ) ) . '",
noteVideo7 : "' . esc_js( __( "(Specifies the width, in pixels, to display the video.)", 'jwl-ultimate-tinymce' ) ) . '",
noteVideo8 : "' . esc_js( __( "(Specifies the height, in pixels, to display the video.)", 'jwl-ultimate-tinymce' ) ) . '",
noteVideo9 : "' . __( "The HTML <strong><video></strong> tag is used to specify video on an HTML document. For example, you could embed a music video on your web page for your visitors to listen to and watch.<br /><br />Any content between the opening and closing <strong><video></strong> tags is fallback content. This content is displayed only by browsers that don't support the <strong><video></strong> tag.<br /><br /><br />", 'jwl-ultimate-tinymce' ) . '",
bottomnote : "' . __( "<strong>Wordpress Users</strong>: This list is overly exhausive. Not all options can be used inside the content editor. All tags were listed for this plugin to be cross-platform compatible. For usage, simply click the desired tag and it will be inserted into the content editor, wrapping any selected content.", 'jwl-ultimate-tinymce' ) . '",
bottomnote2 : "' . __( "<a target='_blank' href='http://www.plugins.joshlobe.com/contact/'><strong>Report Bugs or Issues</strong></a> | This plugin is a work in progress. Some functionality may not currently work properly, or at all.", 'jwl-ultimate-tinymce' ) . '",
yes: "' . esc_js( __( "Yes", 'jwl-ultimate-tinymce' ) ) . '",
no: "' . esc_js( __( "No", 'jwl-ultimate-tinymce' ) ) . '"
},
w3cvalidate:{
desc : "' . esc_js( __( "W3C Markup Validation", 'jwl-ultimate-tinymce' ) ) . '"
},
w3cvalidate_dlg:{
title : "' . esc_js( __( "W3C Markup Validation", 'jwl-ultimate-tinymce' ) ) . '",
validate : "' . esc_js( __( "Validate", 'jwl-ultimate-tinymce' ) ) . '"
},
xhtmlxtras_dlg:{
attribs_title: "' . esc_js( __( "Insert/Edit Attributes", 'jwl-ultimate-tinymce' ) ) . '",
option_rtl: "' . esc_js( __( "Right to Left", 'jwl-ultimate-tinymce' ) ) . '",
option_ltr: "' . esc_js( __( "Left to Right", 'jwl-ultimate-tinymce' ) ) . '",
insert_date: "' . esc_js( __( "Insert Current Date/Time", 'jwl-ultimate-tinymce' ) ) . '",
remove: "' . esc_js( __( "Remove", 'jwl-ultimate-tinymce' ) ) . '",
title_cite_element: "' . esc_js( __( "Citation Element", 'jwl-ultimate-tinymce' ) ) . '",
title_abbr_element: "' . esc_js( __( "Abbreviation Element", 'jwl-ultimate-tinymce' ) ) . '",
title_acronym_element: "' . esc_js( __( "Acronym Element", 'jwl-ultimate-tinymce' ) ) . '",
title_del_element: "' . esc_js( __( "Deletion Element", 'jwl-ultimate-tinymce' ) ) . '",
title_ins_element: "' . esc_js( __( "Insertion Element", 'jwl-ultimate-tinymce' ) ) . '",
fieldset_events_tab: "' . esc_js( __( "Element Events", 'jwl-ultimate-tinymce' ) ) . '",
fieldset_attrib_tab: "' . esc_js( __( "Element Attributes", 'jwl-ultimate-tinymce' ) ) . '",
fieldset_general_tab: "' . esc_js( __( "General Settings", 'jwl-ultimate-tinymce' ) ) . '",
events_tab: "' . esc_js( __( "Events", 'jwl-ultimate-tinymce' ) ) . '",
attrib_tab: "' . esc_js( __( "Attributes", 'jwl-ultimate-tinymce' ) ) . '",
general_tab: "' . esc_js( __( "General", 'jwl-ultimate-tinymce' ) ) . '",
attribute_attrib_tab: "' . esc_js( __( "Attributes", 'jwl-ultimate-tinymce' ) ) . '",
attribute_events_tab: "' . esc_js( __( "Events", 'jwl-ultimate-tinymce' ) ) . '",
attribute_label_accesskey: "' . esc_js( __( "AccessKey", 'jwl-ultimate-tinymce' ) ) . '",
attribute_label_tabindex: "' . esc_js( __( "TabIndex", 'jwl-ultimate-tinymce' ) ) . '",
attribute_label_langcode: "' . esc_js( __( "Language", 'jwl-ultimate-tinymce' ) ) . '",
attribute_option_rtl: "' . esc_js( __( "Right to Left", 'jwl-ultimate-tinymce' ) ) . '",
attribute_option_ltr: "' . esc_js( __( "Left to Right", 'jwl-ultimate-tinymce' ) ) . '",
attribute_label_langdir: "' . esc_js( __( "Text Direction", 'jwl-ultimate-tinymce' ) ) . '",
attribute_label_datetime: "' . esc_js( __( "Date/Time", 'jwl-ultimate-tinymce' ) ) . '",
attribute_label_cite: "' . esc_js( __( "Cite", 'jwl-ultimate-tinymce' ) ) . '",
attribute_label_style: "' . esc_js( __( "Style", 'jwl-ultimate-tinymce' ) ) . '",
attribute_label_class: "' . esc_js( __( "Class", 'jwl-ultimate-tinymce' ) ) . '",
attribute_label_id: "' . esc_js( __( "ID", 'jwl-ultimate-tinymce' ) ) . '",
attribute_label_title: "' . esc_js( __( "Title", 'jwl-ultimate-tinymce' ) ) . '"
},
youtube:{
desc : "' . esc_js( __( 'Insert YouTube video', 'jwl-ultimate-tinymce' ) ) . '",
desc_iframe : "' . esc_js( __( 'Insert YouTube video (iFrame)', 'jwl-ultimate-tinymce' ) ) . '"
},
youtube_dlg:{
title : "' . esc_js( __( "Insert a YouTube Video", 'jwl-ultimate-tinymce' ) ) . '",
instr : "' . __( "Link format for sharing : <br /> http://youtu.be/xxxxxxxx <br /> or <br /> http://www.youtube.com/watch?v=xxxxxxxx", 'jwl-ultimate-tinymce' ) . '",
ytID : "' . esc_js( __( "Link Sharing", 'jwl-ultimate-tinymce' ) ) . '",
ytW : "' . esc_js( __( "Width", 'jwl-ultimate-tinymce' ) ) . '",
ytH : "' . esc_js( __( "Height", 'jwl-ultimate-tinymce' ) ) . '",
autoplay: "' . esc_js( __( "Autoplay", 'jwl-ultimate-tinymce' ) ) . '",
relvideo: "' . esc_js( __( "Related videos", 'jwl-ultimate-tinymce' ) ) . '",
hd: "' . esc_js( __( "Watch in HD", 'jwl-ultimate-tinymce' ) ) . '",
controls: "' . esc_js( __( "Show Controls", 'jwl-ultimate-tinymce' ) ) . '",
showinfo: "' . esc_js( __( "Show Info", 'jwl-ultimate-tinymce' ) ) . '",
autohide: "' . esc_js( __( "Fade Controls", 'jwl-ultimate-tinymce' ) ) . '",
fade: "' . esc_js( __( "Fade", 'jwl-ultimate-tinymce' ) ) . '",
yes: "' . esc_js( __( "Yes", 'jwl-ultimate-tinymce' ) ) . '",
no: "' . esc_js( __( "No", 'jwl-ultimate-tinymce' ) ) . '",
title: "' . esc_js( __( "Insert/edit youtube videos", 'jwl-ultimate-tinymce' ) ) . '",
url_field: "' . esc_js( __( "YouTube video url or code:", 'jwl-ultimate-tinymce' ) ) . '",
url_example1: "' . esc_js( __( "URL Example", 'jwl-ultimate-tinymce' ) ) . '",
url_example2: "' . esc_js( __( "Code Example", 'jwl-ultimate-tinymce' ) ) . '",
choose_size: "' . esc_js( __( "Choose size", 'jwl-ultimate-tinymce' ) ) . '",
custom: "' . esc_js( __( "Custom", 'jwl-ultimate-tinymce' ) ) . '",
Width: "' . esc_js( __( "Width", 'jwl-ultimate-tinymce' ) ) . '",
Height: "' . esc_js( __( "Height", 'jwl-ultimate-tinymce' ) ) . '",
iframe: "' . esc_js( __( "New iFrame style", 'jwl-ultimate-tinymce' ) ) . '",
embed: "' . esc_js( __( "Old Embeded Style", 'jwl-ultimate-tinymce' ) ) . '"
},
imgmap:{
title : "' . esc_js( __( "Image Map Editor", 'jwl-ultimate-tinymce' ) ) . '",
desc : "' . esc_js( __( "Image Map Editor", 'jwl-ultimate-tinymce' ) ) . '",
remove : "' . esc_js( __( "Remove map", 'jwl-ultimate-tinymce' ) ) . '"
}
}})';