en-GB.com_jce.ini
101 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
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
; JCE Project
; Copyright (C) 2006 - 2019 Ryan Demmer. All rights reserved
; GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
; Note : All ini files need to be saved as UTF-8
;# Description
COM_JCE="JCE Editor"
JCE="JCE Editor"
COM_JCE_XML_DESCRIPTION="<p>JCE is a WYSIWYG Editor Extension for Joomla.</p><p>JCE would not exist without these great projects:<br /><ul><li><a href='http://www.joomla.org' target='_blank'>Joomla!</a></li><li><a href='https://tinymce.com' target='_blank'>TinyMCE</a></li><li><a href='https://jquery.com' target='_blank'>JQuery</a></li><li><a href='https://getuikit.com/' target='_blank'>UIKit</a></li><li>Fugue Icons Copyright © <a href='http://p.yusukekamiyamane.com/'>Yusuke Kamiyamane.</a> All rights reserved.</ul></p><p>JCE is dedicated to my father.</p><p>For a full changelog see <a target='_blank' href='https://www.joomlacontenteditor.net/support/changelog/editor'>https://www.joomlacontenteditor.net/support/changelog/editor</a></p>"
COM_JCE_MENU_PROFILES="Profiles"
COM_JCE_MENU_CONFIG="Global Configuration"
COM_JCE_MENU_CPANEL="Control Panel"
WF_ADMIN_VERSION="Version"
WF_EDITOR_TITLE="JCE Editor"
COM_JCE_CONFIGURATION="Preferences"
PLG_QUICKICON_JCEFILEBROWSER_XML_DESCRIPTION="Control Panel Quick Icon for the JCE File Browser"
;#################### Sub-menu & View names ##############################
WF_ADMINISTRATION="JCE Administration"
WF_CPANEL="Control Panel"
WF_CONFIGURATION="Editor Global Configuration"
WF_CONFIG="Editor Global Configuration"
WF_PROFILES="Editor Profiles"
WF_MEDIABOX="JCE MediaBox Parameters"
WF_HELP="Help"
;#################### Tables Install / Restore Errors ####################
WF_INSTALL_PROFILES_NOFILE_ERROR="Profile XML file not found"
WF_INSTALL_PROFILES_ERROR="Profiles import failed"
WF_INSTALL_PLUGINS_NOFILE_ERROR="Plugins XML file not found"
WF_INSTALL_PLUGINS_ERROR="Plugins import failed"
;#################### CPanel #############################################
WF_CPANEL_TITLE="Control Panel"
WF_CPANEL_LICENCE="Licence"
WF_CPANEL_LICENCE_DESC="The Licence JCE is released under"
WF_CPANEL_VERSION="Version"
WF_CPANEL_VERSION_DESC="The Editor version currently installed"
WF_CPANEL_UPDATE="Updates"
WF_CPANEL_UPDATE_CHECK="Check for Updates"
WF_CPANEL_FEED="News Feed"
WF_CPANEL_FEED_DESC="Show JCE Latest News Feed"
WF_CPANEL_FEED_NONE="No News Feed Available"
WF_CPANEL_FEED_LIMIT="News Feed Limit"
WF_CPANEL_FEED_LIMIT_DESC="Number of News Feed items to show "
WF_CPANEL_FEED_DISABLED="News Feed Disabled"
WF_CPANEL_FEED_ENABLE="Enable News Feed"
WF_CPANEL_FEED_LOAD="Loading Feed..."
WF_CPANEL_HELP="JCE Control Panel Help"
WF_CPANEL_HELP_ABOUT="About the JCE Control Panel"
WF_CPANEL_HELP_PREFERENCES="Options"
WF_CPANEL_HELP_UPDATES="Updates"
WF_CPANEL_SUPPORT="Support"
WF_CPANEL_SUPPORT_DESC="Documentation, FAQ, Tutorials and Forum"
WF_CPANEL_BROWSER="JCE File Browser"
WF_QUICKICON_BROWSER="JCE File Browser"
WF_CPANEL_BROWSER_WIDTH="File Browser Width"
WF_CPANEL_BROWSER_WIDTH_DESC="Width of the Control Panel File Browser dialog"
WF_CPANEL_BROWSER_HEIGHT="File Browser Height"
WF_CPANEL_REPLACE_MEDIAMANAGER_LABEL="JCE File Browser in Image Fields"
WF_CPANEL_REPLACE_MEDIAMANAGER_DESCRIPTION="Replace the Joomla Media Manager in Joomla Image fields with the JCE File Browser"
;#################### Preferences #####################################
WF_PREFERENCES_UPDATES="Update Options"
WF_PREFERENCES_STANDARD="General Options"
WF_PREFERENCES_SAVED="Options Saved"
WF_HELP_CUSTOM="Custom Help Site"
WF_HELP_CUSTOM_DESC="Use a custom site for Help Documentation instead of the JCE site."
WF_HELP_URL="Help URL"
WF_HELP_URL_DESC="Custom URL to a Help site (no trailing slash)"
WF_HELP_URL_METHOD="Help URL Method"
WF_HELP_URL_METHOD_DESC="The Help URL Method to use for finding a help file. The options are Key Reference - using the Joomla Article Manager Key Reference system - or SEF - which loads a help article using a SEF url, eg: https://www.joomlacontenteditor.net/support/documentation/editor/about"
WF_HELP_URL_KEYREFERENCE="Key Reference"
WF_HELP_URL_SEF="SEF URL"
WF_HELP_PATTERN="Help URL Pattern"
WF_HELP_PATTERN_DESC="A replacement pattern to use for creating a Help URL if the SEF URL option is selected. The pattern should include a series of numbered variables seperated by a character, eg: /$1/$2/$3"
WF_PREFERENCES="Options"
WF_PREFERENCES_TITLE="Administration Options"
WF_PREFERENCES_PERMISSIONS="Permissions"
WF_PREFERENCES_SECUREPARAMS="Encrypt Profile Parameters"
WF_PREFERENCES_SECUREPARAMS_DESC="Encrypt Profile Parameters using industry standard AES128 encryption"
WF_UPDATES_KEY="Update Key"
WF_UPDATES_KEY_DESC="Subscription / Transaction ID required for subscription plugin updates. Available from your Subscription History page at https://www.joomlacontenteditor.net."
;#################### Global Configuration ############################
WF_CONFIG_TITLE="JCE Editor Global Configuration"
WF_CONFIG_DESC="Edit the JCE Editor Global Configuration"
WF_CONFIG_CLEANUP="Cleanup & Output"
WF_CONFIG_FORMAT="Formatting & Display"
WF_CONFIG_ADVANCED="Advanced"
WF_CONFIG_OTHER="Miscellaneous"
WF_CONFIG_HELP="JCE Global Configuration Help"
WF_CONFIG_HELP_ABOUT="JCE Global Configuration"
WF_CONFIG_HELP_CLEANUP="Cleanup & Output"
WF_CONFIG_HELP_FORMAT="Formatting and Display"
WF_CONFIG_HELP_ADVANCED="Advanced Options"
WF_CONFIG_HELP_COMPRESSION="Compression Options"
WF_CONFIG_COMPRESSION="Compression Options"
WF_CONFIG_SAVED="Configuration Saved"
;#################### Profiles #######################################
WF_PROFILES_TITLE="JCE Editor Profiles"
WF_PROFILES_DESC="Create / Edit profiles for the editor"
WF_PROFILES_LIST="List"
WF_PROFILES_NAME="Name"
WF_PROFILES_NAME_DESC="Name of the Profile"
WF_PROFILES_STATE="State"
WF_PROFILES_DESCRIPTION="Description"
WF_PROFILES_DESCRIPTION_DESC="Short description of the Profile"
WF_PROFILES_ORDERING="Ordering"
WF_PROFILES_ORDERING_DESC="Ordering of the Profile"
WF_PROFILES_EDIT="Edit Profile"
WF_PROFILES_SETUP="Setup"
WF_PROFILES_SETUP_DESC="Set name, description, ordering and restriction settings for the profile"
WF_PROFILES_FEATURES="Features & Layout"
WF_PROFILES_FEATURES_DESC="Set available buttons and commands for the profile"
WF_PROFILES_FEATURES_ADDITIONAL="Additional Features"
WF_PROFILES_FEATURES_LAYOUT="Editor Layout"
WF_PROFILES_ASSIGNMENT="Assignment"
WF_PROFILES_DETAILS="Details"
WF_PROFILES_COMPONENTS="Components"
WF_PROFILES_COMPONENTS_DESC="Assign the Profile to the selected components. This profile will only be available when using one of the selected components. Check 'All Components' for normal operation."
WF_PROFILES_COMPONENTS_ALL="All Components"
WF_PROFILES_COMPONENTS_SELECT="Select from list"
WF_PROFILES_AREA="Area"
WF_PROFILES_AREA_FRONTEND="Front-end"
WF_PROFILES_AREA_BACKEND="Back-end"
WF_PROFILES_AREA_DESC="Assign the profile to this Joomla! Area"
WF_PROFILES_TOGGLE_ALL="Toggle All"
WF_PROFILES_REMOVE_USERS="Remove Users"
WF_PROFILES_EXPORT="Export"
WF_PROFILES_IMPORT="Import Profile"
WF_PROFILES_IMPORT_IMPORT="Import"
WF_PROFILES_IMPORT_BROWSE_ERROR="Incorrect file type : File must be an XML file"
WF_PROFILES_IMPORT_NOFILE="Import failed : No file to import from"
WF_PROFILES_SAVED_CHANGES="Changes saved to profile '%s'"
WF_PROFILES_SAVED="Profile '%s' saved"
WF_PROFILES_GROUPS="User Group"
WF_PROFILES_GROUPS_DESC="Assign the Profile to the selected User Groups"
WF_PROFILES_USERS="Users"
WF_PROFILES_USERS_DESC="Assign the Profile to the selected Users"
WF_PROFILES_USERS_ADD="Add Users"
WF_PROFILES_FEATURES_LAYOUT_AVAILABLE="Available Buttons & Toolbars"
WF_PROFILES_FEATURES_LAYOUT_AVAILABLE_DESC="<h5>Available buttons not yet assigned to the Editor Layout</h5> <ul><li>These buttons will not appear in the editor layout when editing.</li><li>Buttons or rows can be dragged into the Current Editor Layout to make them available.</li></ul>"
WF_PROFILES_FEATURES_LAYOUT_EDITOR="Current Editor Layout"
WF_PROFILES_FEATURES_LAYOUT_EDITOR_DESC="<h5>Buttons assigned to the Editor Layout</h5> <ul><li>Drag & Drop buttons or rows to re-order.</li><li>Buttons or rows can be removed from the layout by dragging them into the Available Buttons layout.</li></ul>"
WF_PROFILES_EDITOR_SETUP="Cleanup & Output"
WF_PROFILES_EDITOR_FILESYSTEM="Filesystem"
WF_PROFILES_EDITOR_PARAMETERS="Editor Parameters"
WF_PROFILES_EDITOR="Editor Parameters"
WF_PROFILES_EDITOR_PARAMETERS_DESC="Set editor parameters for the profile"
WF_PROFILES_EDITOR_TYPOGRAPHY="Typography"
WF_PROFILES_PLUGIN_PARAMETERS="Plugin Parameters"
WF_PROFILES_PLUGINS="Plugin Parameters"
WF_PROFILES_EDITOR_ADVANCED="Advanced"
WF_PROFILES_PLUGIN_PARAMETERS_DESC="Set available parameters for each plugin"
WF_PROFILES_PLUGINS_STANDARD="Standard Parameters"
WF_PROFILES_PLUGINS_STANDARD_DESC="Standard Parameters for the plugin"
WF_PROFILES_PLUGINS_DEFAULTS="Default Values"
WF_PROFILES_PLUGINS_DEFAULTS_DESC="Set default values for plugin options"
WF_PROFILES_PLUGINS_ACCESS="Permissions"
WF_PROFILES_PLUGINS_ACCESS_DESC="Enable or disable plugin features"
WF_PROFILES_PLUGINS_ADVANCED="Advanced Parameters"
WF_PROFILES_PLUGINS_ADVANCED_DESC="Set advanced plugin parameters"
WF_PROFILES_NO_PLUGINS="No Plugins in Editor Layout"
WF_PROFILES_UPLOAD_FAILED="Profile file upload failed"
WF_PROFILES_UPLOAD_NOFILE="Profile upload file not found"
WF_PROFILES_SELECT_ERROR="No Profile selected"
WF_PROFILES_IMPORT_ERROR="Profile import failed"
WF_PROFILES_IMPORT_SUCCESS="%s Profile(s) imported successfully"
WF_PROFILES_DELETED="%s Profile(s) deleted successfully"
WF_PROFILES_COPIED="%s Profile(s) copied successfully"
WF_PROFILES_COPY_OF="Copy of %s"
WF_PROFILES_COPY="Copy"
WF_PROFILES_HELP="JCE Profiles Help"
WF_PROFILES_HELP_ABOUT="About Profiles"
WF_PROFILES_HELP_MANAGE="Managing Profiles"
WF_PROFILES_HELP_MANAGE_COPY="Copying Profiles"
WF_PROFILES_HELP_MANAGE_DELETE="Deleting Profiles"
WF_PROFILES_HELP_MANAGE_EXPORT="Exporting Profiles"
WF_PROFILES_HELP_MANAGE_IMPORT="Importing Profiles"
WF_PROFILES_HELP_MANAGE_ORDERING="Ordering Profiles"
WF_PROFILES_HELP_MANAGE_ENABLE="Enable and Disable Profiles"
WF_PROFILES_HELP_EDIT="Creating and Editing Profiles"
WF_PROFILES_HELP_EDIT_SETUP="Setup"
WF_PROFILES_HELP_EDIT_FEATURES="Features & Layout"
WF_PROFILES_HELP_EDIT_EDITOR="Editor Parameters"
WF_PROFILES_HELP_EDIT_PLUGINS="Plugin Parameters"
WF_PROFILES_HELP_EDIT_WIDGETS="Parameter Widgets"
WF_PROFILES_SAMPLE_DEFAULT="Default Profile for all users with edit access"
WF_PROFILES_SAMPLE_FRONT="Sample Front-end Profile for Authors, Editors, Publishers"
WF_PROFILES_CHECKED_OUT="The Profile %s is being edited"
WF_PROFILES_VIEW_SELECT="Please select a %s to %s"
WF_PROFILES_DEFAULT_DESC="Default Profile for all users"
WF_PROFILES_FRONTEND_DESC="Sample Front-end Profile"
WF_PROFILES_ENABLED="Enabled"
WF_PROFILES_ENABLED_DESC="Profile State"
WF_PROFILES_PLUGINS_BUTTONS="Buttons"
WF_PROFILES_PLUGINS_BUTTONS_DESC="Select plugin buttons"
WF_PROFILES_DEVICE_DESKTOP="Desktop"
WF_PROFILES_DEVICE_TABLET="Tablet"
WF_PROFILES_DEVICE_PHONE="Phone"
WF_PROFILES_DELETE="Delete"
WF_PROFILES_MOVE_DOWN="Move Down"
WF_PROFILES_MOVE_UP="Move Up"
WF_PROFILES_DEVICE="Device"
WF_PROFILES_DEVICE_DESC="User device, eg: Desktop, Tablet or Phone"
WF_PROFILES_CUSTOM="Custom"
WF_PROFILES_CUSTOM_DESC="A list of key=value pairs to assign this profile to. These will be checked against REQUEST variables sent when the editor is loaded."
WF_PROFILES_CUSTOM_KEY="Key"
WF_PROFILES_CUSTOM_VALUE="Value"
COM_JCE_N_ITEMS_DELETED="%s profiles deleted."
COM_JCE_N_ITEMS_DELETED_1="%s profile deleted."
COM_JCE_N_ITEMS_EXPORTED="%s profiles imported."
COM_JCE_N_ITEMS_EXPORTED_1="%s profile imported."
COM_JCE_N_ITEMS_COPIED="%s profiles copied."
COM_JCE_N_ITEMS_COPIED_1="%s profile copied."
COM_JCE_N_ITEMS_PUBLISHED="%s profiles published."
COM_JCE_N_ITEMS_PUBLISHED_1="%s profile published."
COM_JCE_N_ITEMS_UNPUBLISHED="%s profiles unpublished."
COM_JCE_N_ITEMS_UNPUBLISHED_1="%s profile unpublished."
WF_TOOLBAR_IMPORT="Import"
;################### Users ########################
WF_USERS_NAME="Name"
WF_USERS_USERNAME="Username"
WF_USERS_GROUP="Group"
WF_USERS_GROUP_SELECT="Select Group"
;#################### Plugins Import Errors ###########################
WF_PLUGINS_IMPORT_ERROR="Unable to import plugins data"
WF_PLUGINS_IMPORT_SUCCESS="Plugins table data imported successfully"
;#################### MediaBox #######################################
WF_MEDIABOX_TITLE="JCE MediaBox"
WF_MEDIABOX_CONFIGURATION="JCE MediaBox Configuration"
WF_MEDIABOX_DESC="Edit JCE MediaBox parameters"
WF_MEDIABOX_HELP="JCE MediaBox Configuration Help"
WF_MEDIABOX_HELP_CONFIG="Configuration"
WF_MEDIABOX_PARAMETERS="MediaBox Parameters"
WF_MEDIABOX_SAVED="MediaBox Parameters Saved."
;#################### Database Delete / Restore ######################
WF_DB_CREATE_RESTORE="[Create / Restore]"
WF_DB_PROFILES_ERROR="The Profiles database table does not exist or is empty"
;#################### Editor Install ################################
WF_EDITOR_FILES_ERROR="Editor files missing. Please <a href='http://www.joomlacontenteditor.net/support/installation/editor' target='_blank' title='Editor Install'>Install the Editor Plugin</a>"
WF_EDITOR_ENABLED_ERROR="Editor is not enabled. Please enable the editor in the Joomla! Plugin Manager."
WF_EDITOR_DEFAULT_NOTICE="Editor is not set as the default WYSIWYG Editor in the Joomla! Configuration."
WF_EDITOR_INSTALLED_ERROR="Editor Plugin is not installed. Install Editor Plugin or follow manual installation instructions."
WF_EDITOR_INSTALLED_MANUAL_ERROR="Editor Plugin files exist but Editor Plugin is not installed"
WF_EDITOR_INSTALL="[Install Editor Plugin]"
WF_EDITOR_FILES_MISSING="Editor Files missing."
WF_EDITOR_INSTALL_SUCCESS="Editor Plugin installed successfully."
WF_EDITOR_NONE="No Editor Installed"
WF_EDITOR_EXTRACT_ERROR="Error extracting editor package"
WF_EDITOR_REMOVE_ERROR="Error removing Editor Plugin"
WF_EDITOR_REMOVE_SUCCESS="Editor Plugin removed successfully"
WF_EDITOR_REMOVE_NOT_FOUND="Error removing Editor Plugin - Editor not found"
;#################### Tools / Elements ################################
WF_SERVER_UPLOAD_SIZE="Your server's maximum upload size"
WF_TOOLS_EDITABLESELECT_LABEL="Edit value..."
WF_COLORPICKER_PICKER="Picker"
WF_COLORPICKER_COLORPICKER="Colour Picker"
WF_COLORPICKER_TEMPLATE_DESC="The following colours have been retrieved from your template stylesheets"
WF_COLORPICKER_PALETTE="Web"
WF_COLORPICKER_NAMED="Named"
WF_COLORPICKER_TEMPLATE="Template"
WF_COLORPICKER_CUSTOM="Custom"
WF_COLORPICKER_COLOR="Colour"
WF_COLORPICKER_APPLY="Apply"
WF_COLORPICKER_NAME="Name"
WF_EXTENSION_MAPPER="Extension Mapper"
WF_EXTENSION_MAPPER_TYPE_NEW="Add new type..."
WF_EXTENSION_MAPPER_GROUP_NEW="Add new group..."
;#################### Parameters ################################
NO_PARAMETERS="There are no parameters for this item"
;#################### Parameters - Config Setup ################################
WF_PARAM_NONE="There are no parameters for this item"
WF_PARAM_EDITOR_WIDTH="Editor Width"
WF_PARAM_EDITOR_WIDTH_DESC="Width of the Editor window in % or px. If %, add % symbol, eg: 80% Leave blank to use the original width of the textarea."
WF_PARAM_EDITOR_HEIGHT="Editor Height"
WF_PARAM_EDITOR_HEIGHT_DESC="Height of the Editor window in % or px. If %, add % symbol, eg: 80% Leave blank to use the original height of the textarea."
WF_PARAM_EDITOR_STATE="Editor State"
WF_PARAM_EDITOR_STATE_DESC="Default Editor State - On/Off"
WF_PARAM_EDITOR_TOGGLE_LABEL="Editor Toggle Label"
WF_PARAM_EDITOR_TOGGLE_LABEL_DESC="Text for the Editor Toggle link, eg: [Toggle Editor]"
WF_PARAM_EDITOR_TOGGLE="Editor Toggle"
WF_PARAM_EDITOR_TOGGLE_DESC="Allow Editor Toggling - switching the editor on and off"
WF_PARAM_EDITOR_GLOBAL_CSS="Editor Styles"
WF_PARAM_EDITOR_PROFILE_CSS="Editor Styles"
WF_PARAM_EDITOR_GLOBAL_CSS_DESC="CSS file to use for editor content styling and Styles list options<ul><li>Template CSS file - Use the default css file (template.css or template_css.css) of your Joomla! template</li><li>Custom CSS File - Use a custom CSS file specified in the <strong>Custom CSS File</strong> field</li><li>Default - Use default JCE Editor styles</li></ul>"
WF_PARAM_EDITOR_PROFILE_CSS_DESC="Specify how to integrate the Custom CSS files and Custom Styles with the Editor Styles set in the Editor Global Configuration.<ul><li>Add - Add the <strong>Custom CSS Files</strong> to the Editor Styles. Add the <strong>Custom Styles</strong> to the Styles list.</li><li>Overwrite - Replace the Editor Styles with the <strong>Custom CSS Files</strong> and <strong>Custom Styles</strong>.</li><li>Inherit - Use the Editor Styles set in the Editor Global Configuration only (Default)</li></ul>"
WF_PARAM_CSS_TEMPLATE="Template CSS File"
WF_PARAM_CSS_CUSTOM="Custom CSS Files"
WF_PARAM_CSS_CUSTOM_DESC="Use a custom CSS file for styling the editor content and as a source for classes in the Styles list if <strong>Editor Styles</strong> is set to <strong>Custom CSS Files</strong><br />Enter the relative url of the replacement css file.<br />The $template variable will be replaced by your active template name.<br />separate multiple stylesheets with a comma, eg: templates/$template/css/sheet1.css,<br />templates/$template/css/sheet2.css<br />Clear your browser cache after changing the Editor Styles setting."
WF_PARAM_CSS_INHERIT="Inherit"
WF_PARAM_CSS_ADD="Add"
WF_PARAM_CSS_OVERWRITE="Overwrite"
WF_PARAM_TOOLBAR_LOCATION="Toolbar Position"
WF_PARAM_TOOLBAR_LOCATION_DESC="Position of the Editor toolbar"
WF_PARAM_TOOLBAR_ALIGN="Toolbar Alignment"
WF_PARAM_TOOLBAR_ALIGN_DESC="Alignment of the Editor toolbar"
WF_PARAM_RELATIVE="Relative URLs"
WF_PARAM_RELATIVE_DESC="Use relative URLS for all images, links etc. in content items. Recommended."
WF_PARAM_ROOT_BLOCK="Container Element & Enter Key"
WF_PARAM_ROOT_BLOCK_DESC="Select Container Element and Enter Key behaviour :<ul><li><strong>Paragraph Container & Paragraph on Enter (Default)</strong><br />All Text and non-block elements will be wrapped in a Paragraph, and pressing the Enter key will create a new Paragraph. SHIFT+Enter creates a linebreak.</li><li><strong>Div Container & Div on Enter</strong><br />All Text and non-block elements will be wrapped in a DIV, and pressing the Enter key will create a new DIV. SHIFT+Enter creates a linebreak.</li><li><strong>No Container & Paragraph on Enter</strong><br />Text and non-block elements will not be wrapped. Pressing the Enter key will create a new Paragraph. SHIFT+Enter creates a linebreak.</li><li><strong>No Container & Linebreak on Enter</strong><br />Text and non-block elements will not be wrapped. Pressing the Enter key will create a linebreak. SHIFT+Enter creates a paragraph.</li></ul>"
WF_OPTION_DIV="Div Container & Div on Enter"
WF_OPTION_PARAGRAPH="Paragraph Container & Paragraph on Enter"
WF_OPTION_PARAGRAPH_MIXED="No Container & Paragraph on Enter"
WF_OPTION_LINEBREAK="No Container & Linebreak on Enter"
WF_PARAM_EDITOR_PROFILE_ROOT_BLOCK_DESC="Select Container Element and Enter Key behaviour :<ul><li><strong>Paragraph Container & Paragraph on Enter</strong><br />All Text and non-block elements will be wrapped in a Paragraph, and pressing the Enter key will create a new Paragraph. SHIFT+Enter creates a linebreak.</li><li><strong>Div Container & Div on Enter</strong><br />All Text and non-block elements will be wrapped in a DIV, and pressing the Enter key will create a new DIV. SHIFT+Enter creates a linebreak.</li><li><strong>No Container & Paragraph on Enter</strong><br />Text and non-block elements will not be wrapped. Pressing the Enter key will create a new Paragraph. SHIFT+Enter creates a linebreak.</li><li><strong>No Container & Linebreak on Enter</strong><br />Text and non-block elements will not be wrapped. Pressing the Enter key will create a linebreak. SHIFT+Enter creates a paragraph.</li><li><strong>Inherit (Default)</strong><br />Use Global Configuration settings.</ul>"
WF_PARAM_EDITOR_TOOLBAR_THEME="Toolbar Theme"
WF_PARAM_EDITOR_TOOLBAR_THEME_DESC="Theme for the editor toolbar"
WF_PARAM_EDITOR_SKIN_CLASSIC="Classic"
WF_PARAM_EDITOR_SKIN_CLASSIC_TOUCH="Classic Touch"
WF_PARAM_EDITOR_SKIN_OFFICE_BLUE="Office Blue"
WF_PARAM_EDITOR_SKIN_OFFICE_SILVER="Office Silver"
WF_PARAM_EDITOR_SKIN_OFFICE_BLACK="Office Black"
WF_PARAM_EDITOR_SKIN_RETINA_TOUCH="Retina Touch"
WF_PARAM_EDITOR_SKIN_MODERN="Modern"
WF_PARAM_EDITOR_SKIN_RETINA="Retina"
WF_PARAM_COMPRESS_JAVASCRIPT="Compress Javascript"
WF_PARAM_COMPRESS_JAVASCRIPT_DESC="Combine and compress all editor javascript files to speed up loading."
WF_PARAM_COMPRESS_CSS="Compress CSS"
WF_PARAM_COMPRESS_CSS_DESC="Combine and compress editor css files to speed up loading."
WF_PARAM_COMPRESS_GZIP="Compress with Gzip"
WF_PARAM_COMPRESS_GZIP_DESC="Gzip compressed files to further reduce their size. Disabled by default as this may not work on all servers."
WF_PARAM_NAMED="Named"
WF_PARAM_NUMERIC="Numeric"
WF_PARAM_PARAGRAPHS="Paragraphs (p)"
WF_PARAM_PARAGRAPH="Paragraph"
WF_PARAM_LINEBREAK="Linebreak"
WF_PARAM_DIV="Div"
WF_PARAM_CLASSIC="Classic"
WF_PARAM_USE_COOKIES="Use Cookies"
WF_PARAM_USE_COOKIES_DESC="Allow cookies for storing function states eg: editor on / off and plugins current directory. Default is Yes."
WF_PARAM_EDITOR_TOOLBAR_ALIGN="Toolbar Alignment"
WF_PARAM_EDITOR_TOOLBAR_ALIGN_DESC="Alignment of the toolbar buttons"
WF_PARAM_EDITOR_TOOLBAR_LOCATION="Toolbar Location"
WF_PARAM_EDITOR_TOOLBAR_LOCATION_DESC="Location of the Editor Toolbar"
WF_PARAM_EDITOR_STATUSBAR_LOCATION="Statusbar Location"
WF_PARAM_EDITOR_STATUSBAR_LOCATION_DESC="Location of the Editor Statusbar"
WF_PARAM_EDITOR_PATH="Show Editor Path"
WF_PARAM_EDITOR_PATH_DESC="Show the Editor Element Path"
WF_PARAM_EDITOR_RESIZING="Allow Editor Resizing"
WF_PARAM_EDITOR_RESIZING_DESC="Allow the Editor to be resized by dragging the editor window"
WF_PARAM_EDITOR_RESIZE_HORIZONTAL="Allow Horizontal Editor Resizing"
WF_PARAM_EDITOR_RESIZE_HORIZONTAL_DESC="Allow the Editor to be resized horizontally by dragging the editor window"
WF_PARAM_EDITOR_RESIZE_COOKIE="Store Editor Size"
WF_PARAM_EDITOR_RESIZE_COOKIE_DESC="Store the resized Editor size using a cookie"
WF_PARAM_EDITOR_BODY_CLASS="Editor Class"
WF_PARAM_EDITOR_BODY_CLASS_DESC="A classname, or list of classnames (separated by a space) to be applied to the editor content area. eg: content-area"
WF_PARAM_EDITOR_ACTIVE_TAB="Active Tab"
WF_PARAM_EDITOR_ACTIVE_TAB_DESC="Select the default editor tab to display"
WF_PARAM_EDITOR_ACTIVE_TAB_WYSIWYG="Editor"
WF_PARAM_EDITOR_ACTIVE_TAB_CODE="Code"
WF_PARAM_EDITOR_ACTIVE_TAB_PREVIEW="Preview"
WF_PARAM_EDITOR_CONVERT_URLS="URL Conversion"
WF_PARAM_EDITOR_CONVERT_URLS_DESC="Select the method used to convert site specific URLs in content.<ul><li>Relative - The site's protocol and domain are removed from the URL</li><li>Absolute: The site's protocol and domain are added to the URL</li><li>None: The URL is left as it is</li></ul>"
;#################### Parameters - Config Cleanup ################################
WF_PARAM_CLEANUP="Validate HTML"
WF_PARAM_CLEANUP_DESC="Set to Yes (recommended) to format and cleanup content based on the Doctype selected below."
WF_PARAM_EDITOR_PROFILE_CLEANUP_DESC="Set to Yes (recommended) to format and cleanup content based on the Doctype selected below. If Inherit is selected the Global Configuration settings for this parameter will be used."
WF_PARAM_PLUGIN_MODE="Plugin Mode"
WF_PARAM_PLUGIN_MODE_DESC="If true, & and ' are not encoded when content is saved to compensate for poorly designed 3rd party Joomla! plugins."
WF_PARAM_JAVASCRIPT="Allow Javascript"
WF_PARAM_JAVASCRIPT_DESC="Allow Javascript code insertion in HTML view"
WF_PARAM_CSS="Allow CSS"
WF_PARAM_CSS_DESC="Allow CSS code (style elements) in the HTML view"
WF_PARAM_ELEMENTS="Extended Elements"
WF_PARAM_ELEMENTS_DESC="Extend functionality by adding in extra elements here, in the form element[attribute1|attribute2], separated by a comma, eg: em[id|title|class],i[id|title|class]. Elements added here will be removed from the Prohibited Elements list.<br /><strong>Only applies if 'Cleanup HTML' is 'Yes'</strong>"
WF_PARAM_NO_ELEMENTS="Prohibited Elements"
WF_PARAM_NO_ELEMENTS_DESC="Comma separated list of prohibited elements. For security purposes the following elements will always be removed unless an appropriate plugin or configuration setting is installed or enabled - applet, iframe, object, embed, script, style, body, bgsound, base, basefont, frame, frameset, head, html, id, ilayer, layer, link, meta, name, title, xml<br /><strong>Only applies if 'Cleanup HTML' is 'Yes'</strong>"
WF_PARAM_INVALID_ATTRIBUTES="Prohibited Attributes"
WF_PARAM_INVALID_ATTRIBUTES_DESC="Comma separated list of prohibited attributes, eg: dynsrc,lowsrc. Can accept regular expression values, eg: on([a-z]+) will remove all event attributes (onclick, onmouseover etc.)<br /><strong>Only applies if 'Cleanup HTML' is 'Yes'</strong>"
WF_PARAM_INVALID_ATTRIBUTE_VALUES="Prohibited Attribute Values"
WF_PARAM_INVALID_ATTRIBUTE_VALUES_DESC="Comma separated list of prohibited attribute values in the CSS Attribute Selector format, eg: img[title='test'] will remove the title attribute value from all img tags with the value 'test'.<br />Accepts the CSS 2.1 and CSS 3 Attribute Selectors - <ul><li>Attribute starts with value : tag[name^='value']<br />eg: img[src='data:image'] will remove all base64 encoded paths from img src attributes</li><li>Attribute equals value : tag[name='value']</li><li>Attribute is not equal to value : name!='value'</li><li>Attribute ends with value : tag[name$='value']<br />eg: img[src$='.jpg'] will remove all img src values that contain paths with the .jpg extension</li></ul><br /><strong>Only applies if 'Cleanup HTML' is 'Yes'</strong>"
WF_PARAM_PHP="Allow PHP"
WF_PARAM_PHP_DESC="Allow PHP code insertion in HTML view. If Yes, full support may require an additional front-end content or system plugin to be installed."
WF_PARAM_ENTITY_ENCODING="Entity Encoding"
WF_PARAM_ENTITY_ENCODING_DESC="Entity encoding method to be used by the editor. "
WF_PARAM_CDATA="XHTML Inline Scripts"
WF_PARAM_CDATA_DESC="Inline javascript is wrapped in CDATA tags to aid XHTML validation"
WF_PARAM_PROTECT_SHORTCODE="Protect Shortcode"
WF_PARAM_PROTECT_SHORTCODE_DESC="Protect the contents of shortcode tags, eg: {tag}content{/tag} from processing by the editor"
;WF_PARAM_INLINE_STYLES="XHTML Attributes"
;WF_PARAM_INLINE_STYLES_DESC="Inline styles are used for deprecated attributes such as align, border, hspace and vspace."
WF_PARAM_EDITOR_STYLE_RESET="Reset Editor Styling"
WF_PARAM_EDITOR_STYLE_RESET_DESC="Reset the styling of the editor content. Forces left aligned, black text on a white background."
WF_PARAM_PAD_EMPTY_TAGS="Pad Empty Tags"
WF_PARAM_PAD_EMPTY_TAGS_DESC="By default, some empty tags (p, h1-6, pre, div, address, caption) are padded with a non-breaking space so they maintain there structure when rendered by the browser. Without the space, some browsers would not render the tags correctly unless additional css is used.<br /><br />Set this option to <strong>No</strong> to remove the non-breaking space when the editor is toggled or the content is saved."
WF_PARAM_VALIDATE_STYLES="Validate Styles"
WF_PARAM_VALIDATE_STYLES_DESC="Allow only a valid CSS syntax for the style atttribute value on all elements."
;#################### Parameters - Config General ################################
WF_PARAM_CUSTOM_COLORS="Custom Colours"
WF_PARAM_CUSTOM_COLORS_DESC="A comma separated list of colours to be used by the ColourPicker, in Hex format, eg: #ff0000."
WF_PARAM_CUSTOM_CONFIG="Custom Configuration Variables"
WF_PARAM_CUSTOM_CONFIG_DESC="A list of custom TinyMCE configuration variables, separated by a ';' See - http://tinymce.moxiecode.com/wiki.php/Configuration"
WF_PARAM_CALLBACK="Custom Callback File"
WF_PARAM_CALLBACK_DESC="Relative url (to site root) of file containing callback functions for TinyMCE callback commands."
WF_PARAM_FONTS="Fonts"
WF_PARAM_FONTS_NEW="Add new font..."
WF_PARAM_FONTS_DESC="Fonts to include in the Font Famliy list.<br />Uncheck a font to remove it from the list, add a new font by clicking the 'Add new font' button. Drag to re-order fonts."
WF_PARAM_FONT_SIZES="Font Sizes"
WF_PARAM_FONT_SIZES_DESC="Comma separated list of font size values eg: 8pt,10pt,12pt,14pt,18pt,24pt,36pt"
WF_PARAM_BLOCK_FORMAT="Format Elements"
WF_PARAM_BLOCK_FORMAT_DESC="Block elements for the Format Select List.</br />Uncheck to remove the item from the list. Drag to re-order."
WF_PARAM_DOCTYPE="Doctype"
WF_PARAM_DOCTYPE_DESC="Doctype to validate HTML with (if Validate HTML is set to Yes)<ul><li>HTML4 : Validate using the HTML4 Transitional specification</li><li>HTML5 : Validate using the HTML5 specification</li><li>Mixed : Validate using a combination of the HTML4 and HTML5 specification</li></ul>"
WF_PARAM_DOCTYPE_MIXED="Mixed"
WF_PARAM_EDITOR_PROFILE_DOCTYPE_DESC="Doctype to validate HTML with (if Validate HTML is set to Yes)<ul><li>HTML4 : Validate using the HTML4 Transitional specification</li><li>HTML5 : Validate using the HTML5 specification</li><li>Mixed : Validate using a combination of the HTML4 and HTML5 specification</li><li>Inherit : Use the Doctype set in the Global Configuration</li></ul>"
WF_PARAM_INLINE_UPLOAD="Inline Upload"
WF_PARAM_INLINE_UPLOAD_DESC="Allow drag & drop and placeholder uploading for this plugin in the editor content area. Only available in Firefox 4+, Chrome 7+, Safari 5.1+ and IE10+"
;## Object Resizing ##
WF_PARAM_OBJECT_RESIZING="Object Resizing"
WF_PARAM_OBJECT_RESIZING_DESC="Allow media objects - images, video, tables - to be drag resized in the editor window"
;#################### Parameters - Config Plugins ################################
WF_PARAM_FOLDER_TREE="Folder Tree"
WF_PARAM_FOLDER_TREE_DESC="Use Folder Tree for directory navigation in 'Manager' plugins"
WF_PARAM_UPLOAD_EXISTS="Upload Conflict Action"
WF_PARAM_UPLOAD_EXISTS_DESC="Select the action for dealing with upload conflicts (where a file of the same name as the uploaded file already exists in the target folder)"
WF_PARAM_UPLOAD_EXISTS_OVERWRITE="Overwrite Existing File"
WF_PARAM_UPLOAD_EXISTS_UNIQUE="Create Unique File Name for uploaded file"
WF_PARAM_UPLOAD_SUFFIX="Upload Name Suffix"
WF_PARAM_UPLOAD_SUFFIX_DESC="A suffix to add to an uploaded file if the file already exists. The default value is '_copy'. Add a $ to the suffix to add a number increment, eg: _$, will yield _1, _2 etc."
WF_PARAM_UPLOAD_ADD_RANDOM="Random upload file name"
WF_PARAM_UPLOAD_ADD_RANDOM_DESC="Append a 5 character random string to the name of uploaded files for added security."
WF_PARAM_UPLOAD_REMOVE_EXIF="Remove Image EXIF data"
WF_PARAM_UPLOAD_REMOVE_EXIF_DESC="Remove image <a href='https://en.wikipedia.org/wiki/Exchangeable_image_file_format' title='EXIF'>EXIF</a> data from uploaded JPEG and PNG files"
WF_PARAM_UPLOAD_QUALITY="Upload Quality (%)"
WF_PARAM_UPLOAD_QUALITY_DESC="Default JPEG quality for uploaded images"
WF_PARAM_WEBSAFE_MODE="Websafe File Names"
WF_PARAM_WEBSAFE_MODE_DESC="Format to use when creating websafe file and folder names. UTF-8 will allow full UTF-8 characters and A-Za-z0-9._-~ in the name, ASCII will convert some UTF-8 Latin characters into ASCII equivalents, eg: ë -> e, õ -> o etc. and will only allow A-Za-z0-9._-~ characters in the name."
WF_PARAM_WEBSAFE_ALLOW_SPACES="Allow spaces in file/folder names"
WF_PARAM_WEBSAFE_ALLOW_SPACES_DESC="Set to Yes to allow spaces in file and folder names or select a character to use as a replacement for the space."
WF_PARAM_WEBSAFE_TEXTCASE="Text Case"
WF_PARAM_WEBSAFE_TEXTCASE_DESC="Select the text case to use for file/folder names."
WF_PARAM_DATE_FORMAT="Date Format"
WF_PARAM_DATE_FORMAT_DESC="Date Format to use when displaying the Modified date of Files and Folders, eg: %d/%m/%Y, %H:%M will display as 13/12/1984, 14:00"
WF_PARAM_VALIDATE_MIMETYPE="Validate Mimetype"
WF_PARAM_VALIDATE_MIMETYPE_DESC="For additional security when uploading, check the mimetype of the uploaded file against its extension. If enabled and the server does not support the PHP fileinfo or mime_content_type functions, the mimetype check will be skipped."
WF_PARAM_BROWSER_POSITION="File Browser Position"
WF_PARAM_BROWSER_POSITION_DESC="Position of the File Browser in the dialog. Default is Bottom"
WF_PARAM_LIST_LIMIT="File Browser List Size"
WF_PARAM_LIST_LIMIT_DESC="Number of files/folders to display in the File Browser file / folder list"
WF_PARAM_EXTENSIONS="Permitted File Extensions"
WF_PARAM_EXTENSIONS_DESC="List of permitted file extensions for uploading/display grouped by type. Click the pencil icon to edit. An extension can be moved from one group to another using drag & drop, deactivated by unchecking its checkbox and extensions created and removed using the + and - symbols."
WF_PARAM_BUTTONS="Buttons"
WF_PARAM_BUTTONS_DESC="Buttons available for this add-on"
WF_PARAM_KEEP_NBSP="Keep non-breaking spaces"
WF_PARAM_KEEP_NBSP_DESC="When Entity Encoding is set to UTF-8, convert UTF-8 spaces to non-breaking spaces (recommended)"
WF_PARAM_TOTAL_FILES_LIMIT="Total Files Limit"
WF_PARAM_TOTAL_FILES_LIMIT_DESC="Set a limit on the total number of files the File Directory Path can contain (including all sub-folders), eg: 50. Uploads will be restricted when this limit it reached. Leave blank for no limit."
WF_PARAM_TOTAL_FILES_SIZE_LIMIT="Total File Size Limit"
WF_PARAM_TOTAL_FILES_SIZE_LIMIT_DESC="Set a limit on the total size the File Directory Path can be, in Mb, eg: 10. Uploads will be restricted when this limit it reached. Leave blank for no limit."
;#################### Editor ################################
WF_COMPONENT_MISSING="The JCE Administration Component is not installed! The Editor cannot function without it!"
WF_COMPONENT_VERSION_ERROR="Version %s of the WF_Administration Component is required. Please download and install this version. <a target='_blank' title='Download' href='http://www.joomlacontenteditor.net/downloads/editor'>[Download]</a>"
;#################### Plugin / Command Titles and Descriptions ################################
WF_CONTEXTMENU_TITLE="Context Menu"
WF_CONTEXTMENU_DESC="Adds a Context Menu with editor commands and buttons when right-clicking in the editor."
WF_BROWSER_TITLE="File Browser"
WF_BROWSER_DESC="Adds a File Browser option to the Link plugin and for specific fields in the Tables, Image Manager and Styles plugins."
WF_INLINEPOPUPS_TITLE="Inline Popups"
WF_INLINEPOPUPS_DESC="Plugin Dialog windows are opened in an inline element rather than a new browser window which overcomes limits imposed by popup blockers."
WF_PASTE_TITLE="Paste"
WF_PASTETEXT_TITLE="Paste As Plain Text"
WF_SPELLCHECKER_TITLE="Spellchecker"
WF_SPELLCHECKER_DESC="Spellchekcer using the Google Spell Checking service or as an interface for PSPell, Aspell or Enchant."
WF_ATTRIBUTES_TITLE="Attributes"
WF_SOURCE_TITLE="Source Code Tab"
WF_SOURCE_DESC="Edit the HTML source code of an article"
WF_ANCHOR_TITLE="Anchor"
WF_ANCHOR_DESC="Create and edit anchors"
WF_ARTICLE_TITLE="Article Breaks"
WF_ARTICLE_DESC="Insert and edit Joomla!© Readmore and Pagebreak elements"
WF_BACKCOLOR_TITLE="Background Colour"
WF_BACKCOLOR_LIST_TITLE="Custom Background Colours"
WF_BACKCOLOR_LIST_DESC="A comma seperated list of custom colours, in hex format, to display in the Font Background Colour drop-down, eg: #cccccc,#dddddd,#eeeeee"
WF_BACKCOLOR_DESC="Apply and edit text background colour."
WF_BOLD_TITLE="Bold"
WF_BOLD_DESC="Apply or remove a bold effect on selected text."
WF_BULLIST_TITLE="Bullet List"
WF_JUSTIFYCENTER_TITLE="Justify Centre"
WF_JUSTIFYCENTER_DESC="Centre align text or elements"
WF_CHARMAP_TITLE="Character Map"
WF_CHARMAP_DESC="Select a special character from a dialog to insert"
WF_CLEANUP_TITLE="Code Cleanup"
WF_CLEANUP_DESC="Cleanup HTML code"
WF_DIRECTIONALITY_TITLE="Directionality"
WF_DIRECTIONALITY_DESC="Set the directionality on an element (eg: left-to-right or right-to-left)"
WF_FONTSELECT_TITLE="Font Family Select"
WF_FONTSELECT_DESC="Set the font-family on selected text eg: Arial"
WF_FONTSIZESELECT_TITLE="Font Size Select"
WF_FONTSIZESELECT_DESC="Set the font-size on selected text eg: 10px"
WF_FORECOLOR_TITLE="Text Colour"
WF_FORECOLOR_DESC="Change the colour of selected text"
WF_FORECOLOR_LIST_TITLE="Custom Text Colours"
WF_FORECOLOR_LIST_DESC="A comma seperated list of custom colours, in hex format, to display in the Text Colour drop-down, eg: #000000,#444444,#888888"
WF_FORMATSELECT_TITLE="Format Select"
WF_FORMATSELECT_DESC="Apply a block format to the selected text or element, eg: Paragraph will wrap the selected text in a paragraph element"
WF_JUSTIFYFULL_TITLE="Justify Full"
WF_JUSTIFYFULL_DESC="Format selected text to full the width of the container element"
WF_FULLSCREEN_TITLE="Full Screen"
WF_FULLSCREEN_DESC="Expand the editor to full the screen."
WF_HELP_TITLE="Help"
WF_HELP_DESC="Open the Editor Help dialog"
WF_HR_TITLE="Horizontal Rule"
WF_HR_DESC="Insert a Horizontal Rule"
WF_IMGMANAGER_TITLE="Image Manager"
WF_IMGMANAGER_DESC="Upload, delete, rename and insert images"
WF_INDENT_TITLE="Indent"
WF_INDENT_DESC="Indent the selected text or element"
WF_ITALIC_TITLE="Italic"
WF_ITALIC_DESC="Apply or remove italics to the selected text"
WF_LAYER_TITLE="Layer"
WF_LAYER_DESC="Insert and edit floating DIV layer elements"
WF_JUSTIFYLEFT_TITLE="Justify Left"
WF_JUSTIFYLEFT_DESC="Align selected text or elements left"
WF_LINK_TITLE="Link"
WF_LINK_DESC="Insert and edit links to articles, web pages, files or e-mail addresses."
WF_MEDIA_TITLE="Media Support"
WF_MEDIA_DESC="Adds support for OBJECT, EMBED, AUDIO, VIDEO and IFRAME elements. Required by the Media Manager and when inserting Adobe® Flash®, Quicktime® and other media file types."
WF_NEWDOCUMENT_TITLE="New Document"
WF_NEWDOCUMENT_DESC="Clear the current document"
WF_NONBREAKING_TITLE="Non-Breaking Space"
WF_NONBREAKING_DESC="Insert a non-breaking space"
WF_NUMLIST_TITLE="Ordered List"
WF_OUTDENT_TITLE="Outdent"
WF_OUTDENT_DESC="Remove the indentation on the selected element"
WF_PREVIEW_TITLE="Preview Tab"
WF_PREVIEW_DESC="Preview the current article"
WF_PRINT_TITLE="Print"
WF_PRINT_DESC="Print the article contents"
WF_REDO_TITLE="Redo"
WF_REDO_DESC="Redo the last action"
WF_REMOVEFORMAT_TITLE="Remove Format"
WF_REMOVEFORMAT_DESC="Remove Formatting on the selected text or element"
WF_JUSTIFYRIGHT_TITLE="Justify Right"
WF_JUSTIFYRIGHT_DESC="Align selected text or elements right"
WF_SEARCHREPLACE_TITLE="Search & Replace"
WF_SEARCHREPLACE_DESC="Find and replace text in the article"
WF_STRIKETHROUGH_TITLE="Strike Through"
WF_STRIKETHROUGH_DESC="Apply or remove a strikethrough on the selected text"
WF_STYLE_TITLE="Styles"
WF_STYLE_DESC="Edit the CSS styles on an element"
WF_STYLESELECT_TITLE="Style Select"
WF_STYLESELECT_DESC="Select a CSS class to apply to the selected text or element. The Style List is populated with the classes form your template stylesheet based on Profile parameters"
WF_SUB_TITLE="Subscript"
WF_SUB_DESC="Apply or remove a subscript on the selected text. The text size will be reduced and the text set slightly below the normal line of type."
WF_SUP_TITLE="Superscript"
WF_SUP_DESC="Apply or remove a superscript on the selected text. The text size will be reduced and the text set slightly above the normal line of type."
WF_TABLE_TITLE="Tables"
WF_TABLE_DESC="Insert and Edit Tables. Includes tools for inserting, removing and merging cells and rows"
WF_TEXTCASE_TITLE="Text Case"
WF_TEXTCASE_DESC="Change the case of the selected text. Options include Sentence case, Camel Case, UPPERCASE and lowercase."
WF_UNDERLINE_TITLE="Underline"
WF_UNDERLINE_DESC="Apply or remove an underline on the selected text"
WF_UNDO_TITLE="Undo"
WF_UNDO_DESC="Undo the last action"
WF_UNLINK_TITLE="Unlink"
WF_UNLINK_DESC="Remove the link on the selected text or element"
WF_VISUALAID_TITLE="Visual Aid"
WF_VISUALAID_DESC="Toggle Visual Aids."
WF_VISUALCHARS_TITLE="Visual Characters"
WF_VISUALCHARS_DESC="Toggle Visual Characters. These include visual representations of non-breaking spaces"
WF_XHTMLXTRAS_TITLE="XHTML Extras"
WF_XHTMLXTRAS_DESC="Add additional properties on an element such as Insertion, Deletion, Acronym and Abbreviation."
WF_BLOCKQUOTE_TITLE="Blockquote"
WF_BLOCKQUOTE_DESC="Insert or remove a Blockquote"
WF_AUTOSAVE_TITLE="AutoBackup"
WF_AUTOSAVE_DESC="Automatically save drafts of the current article at regular intervals"
WF_CITE_TITLE="Citation"
WF_ABBR_TITLE="Abbreviation"
WF_INS_TITLE="Insertion"
WF_ACRONYM_TITLE="Acronym"
WF_DEL_TITLE="Deletion"
WF_COLORPICKER_TITLE="Colour Picker"
WF_VISUALBLOCKS_TITLE="VisualBlocks"
WF_VISUALBLOCKS_DESC="Display a visual representation of block elements"
WF_KITCHENSINK_TITLE="Toggle Toolbars"
WF_KITCHENSINK_DESC="Show / Hide the toolbar rows below the row this button is in"
WF_LISTS_TITLE="Lists"
WF_LISTS_DESC="Ordered (numbered) and Unordered (bullet) lists"
WF_ADVANCED_CHARMAP_TITLE="Character Map"
WF_FONTCOLOR_TITLE="Font Colour"
WF_FONTCOLOR_DESC="Apply font color and background-color styles to a text selection"
;#################### Article Breaks ################################
WF_ARTICLE_PARAM_HIDE_BUTTONS="Hide Joomla! Readmore / PageBreak"
WF_ARTICLE_PARAM_HIDE_BUTTONS_DESC="Hide the Joomla! Readmore and Pagebreak buttons at the bottom of the editor as Article Breaks performs the same functions better."
WF_ARTICLE_PARAM_SHOW_READMORE="Show Readmore button"
WF_ARTICLE_PARAM_SHOW_READMORE_DESC="Show the Readmore button in the Editor Toolbar."
WF_ARTICLE_PARAM_SHOW_PAGEBREAK="Show Pagebreak button"
WF_ARTICLE_PARAM_SHOW_PAGEBREAK_DESC="Show the Pagebreak button in the Editor Toolbar."
WF_ARTICLE_READMORE="Readmore"
WF_ARTILCE_PAGEBREAK="Pagebreak"
WF_TAB_PAGEBREAK="Pagebreak"
;#################### File Browser ################################n
WF_BROWSER_HELP_ABOUT="About the File Browser"
WF_BROWSER_HELP_INTERFACE="The File Browser Interface"
WF_BROWSER_HELP_INSERT="Inserting a file"
WF_BROWSER_MEDIAFIELD_OPTIONS="Media Field Options"
WF_BROWSER_MEDIAFIELD_CONVERSION="Enable Conversion"
WF_BROWSER_MEDIAFIELD_CONVERSION_DESC="Convert the Joomla Media Field to one that supports the JCE File Browser"
WF_BROWSER_MEDIAFIELD_UPLOAD="Direct Upload"
WF_BROWSER_MEDIAFIELD_UPLOAD_DESC="Allow Direct Upload features on the JCE Media Field and converted Media Fields via an additional upload button and drag & drop."
;#################### Autosave ################################
WF_AUTOSAVE_ASK="Ask before unload"
WF_AUTOSAVE_ASK_DESC="Ask before restoring content"
WF_AUTOSAVE_INTERVAL="Backup Interval (seconds)"
WF_AUTOSAVE_INTERVAL_DESC="Backup every X seconds"
WF_AUTOSAVE_RETENTION="Storage time (minutes)"
WF_AUTOSAVE_RETENTION_DESC="Store backup for X minutes"
WF_AUTOSAVE_MINLENGTH="Minimum Content Length"
WF_AUTOSAVE_MINLENGTH_DESC="An article must be at least this many characters long before a backup will occur"
;#################### Link ################################
WF_LINK_JOOMLALINKS_TITLE="Joomla! Links"
WF_LINK_JOOMLALINKS_DESC="Link to Joomla! internal content for the Link Browser"
WF_TAB_LINK="Link"
WF_LINK_PARAM_DEFAULT_TARGET="Default Target"
WF_LINK_PARAM_DEFAULT_TARGET_DESC="Select Default Target"
WF_LINK_PARAM_FILE_BROWSER="Show File Browser Button"
WF_LINK_PARAM_FILE_BROWSER_DESC="This will show a file browser button next to the URL field which will open a File Browser dialog when clicked allowing the user to create links to files."
WF_LINK_LINK="Link"
WF_LINK_LINK_TEXT="Text"
WF_LINK_LINK_TEXT_DESC="Text::If no content selection is made or if the selection is plain text, enter new or edit the text for the link here"
WF_LABEL_ANCHORS="Article Anchors"
WF_LABEL_ANCHORS_DESC="Article Anchors::List of available anchors in the current article to link to."
WF_LABEL_LINKBROWSER="Link Browser"
WF_LABEL_EMAIL="E-Mail"
WF_LABEL_HREFLANG="Target Language Code"
WF_LABEL_HREFLANG_DESC="Target Language Code::Language code of the target url"
WF_LABEL_MIME_TYPE="Target MIME Type"
WF_LABEL_MIME_TYPE_DESC="Target Mimetype::MIME (Multipurpose Internet Mail Extensions) Type of the target url eg: text/html"
WF_LABEL_CHARSET="Target character encoding"
WF_LABEL_CHARSET_DESC="Target character encoding::Character encoding of the target url, eg: utf-8"
WF_LABEL_REL="Relationship page to target"
WF_LABEL_REL_DESC="Relationship page to target::Relationship between the current page and the target url"
WF_LABEL_REV="Relationship target to page"
WF_LABEL_REV_DESC="Relationship target to page::Relationship target url and the current page"
WF_LINK_HELP_ABOUT="What is Link?"
WF_LINK_HELP_INTERFACE="About the Interface"
WF_LINK_HELP_LINKS="The Link Browser"
WF_LINK_HELP_INSERT="Inserting/Updating a Link"
WF_LINK_HELP_EVENTS="The Events Tab"
WF_LINK_HELP_ADVANCED="The Advanced Tab"
WF_LINK_HELP_EMAIL="Creating an E-mail address"
WF_LINK_HELP_POPUP="Creating a Popup"
WF_LINK_PARAM_TAB_ADVANCED="Show Advanced Tab"
WF_LINK_PARAM_TAB_ADVANCED_DESC="Show the Advanced tab for setting additional, advanced link options"
WF_LINK_SHOW_ANCHOR="Show Anchor List"
WF_LINK_SHOW_ANCHOR_DESC="Show the Anchor List options in the Link dialog"
WF_LINK_SHOW_TARGET="Show Target List"
WF_LINK_SHOW_TARGET_DESC="Show the Target List options in the Link dialog"
WF_LINK_AUTOLINK_EMAIL="Autolink Emails"
WF_LINK_AUTOLINK_EMAIL_DESC="Automatically convert email addresses into mailto links when typed or pasted into the editor."
WF_LINK_AUTOLINK_URL="Autolink URLs"
WF_LINK_AUTOLINK_URL_DESC="Automatically convert urls into links when typed or pasted into the editor."
WF_ELEMENT_SELECTION="Element Selection"
WF_LINK_QUICKLINK="Quick Link"
WF_LINK_QUICKLINK_DESC="Enable or Disable the QuickLink drop-down on the Link button"
;#################### Tables ################################
WF_TABLES_TABLE_TITLE="Insert / Edit Table"
WF_TABLES_ROW_TITLE="Edit Row"
WF_TABLES_CELL_TITLE="Edit Cell"
WF_TABLES_MERGE_TITLE="Merge Cells"
WF_TAB_MERGE="Merge"
;#################### Help ################################
WF_EDITOR_HELP_ABOUT="About the Editor"
WF_EDITOR_HELP_TOOLBAR="Editor Toolbar"
WF_EDITOR_HELP_CONTENT="Editor Content Area"
WF_EDITOR_HELP_PATH="Element Path"
WF_EDITOR_HELP_BUTTONS="Editor Buttons"
WF_EDITOR_HELP_LICENCE="Licence"
WF_EDITOR_HELP_ACKNOWLEDGEMENTS="Acknowledgements"
WF_EDITOR_HELP_PLUGINS="Plugins"
WF_EDITOR_HELP_BASICS="Editing Basics"
WF_EDITOR_HELP_SELECTION="Selecting text and elements"
WF_EDITOR_HELP_FORMAT="Formatting text and elements"
WF_EDITOR_HELP_FORMAT_BOLD="Bold, Italic, Underline and Strikethrough"
WF_EDITOR_HELP_FORMAT_BLOCKS="Headers, Block Elements and Blockquote"
WF_EDITOR_HELP_FORMAT_SUB="Superscript and Subscript"
WF_EDITOR_HELP_FORMAT_FONT="Font Styling"
WF_EDITOR_HELP_FORMAT_ALIGN="Alignment"
WF_EDITOR_HELP_FORMAT_INDENT="Indent and Outdent"
WF_EDITOR_HELP_FORMAT_ATTRIBUTES="Editing element attributes"
WF_EDITOR_HELP_LISTS="Creating Lists"
WF_EDITOR_HELP_READMORE="Readmore and Page Break"
WF_EDITOR_HELP_LINKS="Creating and Editing Links"
WF_EDITOR_HELP_IMAGES="Inserting images"
WF_EDITOR_HELP_TABLES="Inserting Tables"
WF_EDITOR_HELP_PASTE="Cut, Copy & Paste"
WF_EDITOR_HELP_SPELLCHECKER="Spellchecker"
;#################### Image Manager ################################
WF_IMGMANAGER_HIDE_BUTTONS="Hide Joomla! Image Button"
WF_IMGMANAGER_HIDE_BUTTONS_DESC="Hide Joomla! Image Button"
WF_IMGMANAGER_HELP="Image Manager Help"
WF_IMGMANAGER_HELP_ABOUT="What is the Image Manager?"
WF_IMGMANAGER_HELP_INTERFACE="About the Interface"
WF_IMGMANAGER_HELP_ROLLOVER="Rollover Images"
WF_IMGMANAGER_HELP_ADVANCED="The Advanced Tab"
WF_IMGMANAGER_HELP_INSERT="Inserting/Updating"
WF_LABEL_MOUSEOVER="Mouseover"
WF_LABEL_MOUSEOVER_DESC="Mouseover::Image to be displayed when the mouse is over the element"
WF_LABEL_MOUSEOUT="Mouseout"
WF_LABEL_MOUSEOUT_DESC="Mouseout::Image to be displayed when the mouse is not over the element"
WF_LABEL_ROLLOVER_ENABLE_DESC="Enable Rollover::Click to enable image rollover."
WF_LABEL_ROLLOVER_IMAGE="Rollover Image"
WF_LABEL_USEMAP="Image Map"
WF_LABEL_USEMAP_DESC="Image Map::Id of associated image map, eg: #map"
WF_TAB_IMAGE="Image"
WF_TAB_ROLLOVER="Rollover"
WF_IMGMANAGER_SHOW_DIMENSIONS="Show Dimensions Options"
WF_IMGMANAGER_SHOW_DIMENSIONS_DESC="User can see and set the image dimensions (width and height)"
WF_IMGMANAGER_SHOW_ALIGN="Show Alignment Options"
WF_IMGMANAGER_SHOW_ALIGN_DESC="User can see and set the image alignment"
WF_IMGMANAGER_SHOW_MARGIN="Show Margin Options"
WF_IMGMANAGER_SHOW_MARGIN_DESC="User can see and set the margin values around the image"
WF_IMGMANAGER_SHOW_BORDER="Show Border Options"
WF_IMGMANAGER_SHOW_BORDER_DESC="User can see and set the image border options (width, style, colour)"
WF_IMGMANAGER_PARAM_TAB_ROLLOVER="Show Rollover Tab"
WF_IMGMANAGER_PARAM_TAB_ROLLOVER_DESC="Show the Rollover tab with additional options for creating image rollovers"
WF_IMGMANAGER_PARAM_TAB_ADVANCED="Show Advanced Tab"
WF_IMGMANAGER_PARAM_TAB_ADVANCED_DESC="Show the Advanced tab for setting additional, advanced image options"
WF_IMGMANAGER_PARAM_ALWAYS_INCLUDE_DIMENSIONS="Always Include Dimensions"
WF_IMGMANAGER_PARAM_ALWAYS_INCLUDE_DIMENSIONS_DESC="If Yes, image dimensions will always be included when inserting images. If No, dimensions will only be included if they are different to the original image dimensions. Default is No."
;#################### Media Support ################################
WF_MEDIA_PARAM_STRICT="Strict XHTML Flash"
WF_MEDIA_PARAM_STRICT_DESC="Embed Flash files using a single object (no embed element)"
WF_MEDIA_PARAM_IFRAMES="Allow IFrames"
WF_MEDIA_PARAM_IFRAMES_DESC="Allow IFrame elements to be included in content"
WF_MEDIA_PARAM_VIDEO="Allow HTML5 Video"
WF_MEDIA_PARAM_VIDEO_DESC="Allow HTML5 Video elements to be included in content"
WF_MEDIA_PARAM_AUDIO="Allow HTML5 Audio"
WF_MEDIA_PARAM_AUDIO_DESC="Allow HTML5 Audio elements to be included in content"
WF_MEDIA_PARAM_OBJECT="Allow OBJECT Elements"
WF_MEDIA_PARAM_OBJECT_DESC="Allow OBJECT elements to be included in content. This is required to embed Adobe Flash Player®, Quicktime® etc."
WF_MEDIA_PARAM_EMBED="Allow EMBED Elements"
WF_MEDIA_PARAM_EMBED_DESC="Allow EMBED elements to be included in content. This is required to embed Adobe Flash Player®, Quicktime® etc."
WF_MEDIA_VERSION_FLASH="Adobe® Flash® Player Version"
WF_MEDIA_VERSION_WINDOWSMEDIA="Windows® Media Player Version"
WF_MEDIA_VERSION_QUICKTIME="Apple Quicktime® Player Version"
WF_MEDIA_VERSION_SHOCKWAVE="Adobe® Shockwave® Player Version"
WF_MEDIA_VERSION_JAVA="Java Version"
WF_MEDIA_PARAM_MEDIA_PREVIEW="Media Previews"
WF_MEDIA_PARAM_MEDIA_PREVIEW_DESC="Show a live preview in the editor of IFrame media, ie: Youtube, Vimeo, etc. instead of a media placeholder."
;#################### Paste ################################
WF_PASTE_PARAM_CLASSES="Strip Class Attributes"
WF_PASTE_PARAM_CLASSES_DESC="Set whether or not class attributes are stripped when pasting. By default all classes are removed from Word/Office content. When pasting from Word/Office, all 'mso' classes are removed, regardless of this setting."
WF_OPTION_PASTE_CLASSES_WORD_ONLY="Only from Word/Office Content"
WF_PASTE_PARAM_LISTED="As Listed"
WF_PASTE_PARAM_SPANS="Remove all SPANS"
WF_PASTE_PARAM_SPANS_DESC="Remove all spans from pasted content"
WF_PASTE_PARAM_STYLES="Remove all Styles"
WF_PASTE_PARAM_STYLES_DESC="Remove styles from pasted content"
WF_PASTE_PARAM_RETAIN_STYLES="Styles to keep"
WF_PASTE_PARAM_RETAIN_STYLES_DESC="Comma separated list of style properties to <strong>keep</strong> when pasting if <strong>Remove all Styles</strong> is <strong>YES</strong>.<br />Example: font-weight,text-decoration."
WF_PASTE_PARAM_REMOVE_STYLES="Styles to remove"
WF_PASTE_PARAM_REMOVE_STYLES_DESC="Comma separated list of style properties to <strong>remove</strong> when pasting if <strong>Remove all Styles</strong> is <strong>NO</strong>.<br />Example: font-size,font-family,color."
WF_PASTE_PARAM_REMOVE_STYLES_WEBKIT="Remove Webkit Styles"
WF_PASTE_PARAM_REMOVE_STYLES_WEBKIT_DESC="If Yes, removes all style information when pasting in WebKit since it has a serious paste bug. Default is No. "
WF_PASTE_PARAM_WIDTH="Dialog Width"
WF_PASTE_PARAM_WIDTH_DESC="Width of the Paste Dialog in pixels (px)"
WF_PASTE_PARAM_HEIGHT="Dialog Height"
WF_PASTE_PARAM_HEIGHT_DESC="Height of the Paste Dialog in pixels (px)"
WF_PASTE_PARAM_REMOVE_PARAGRAPHS="Remove empty paragraphs"
WF_PASTE_PARAM_REMOVE_PARAGRAPHS_DESC="Empty paragraphs are removed from pasted content or converted into linebreaks if the Global Configuration 'Newlines' option is set to 'Linebreaks'."
WF_PASTE_PARAM_PASTE_TEXT="Allow Paste As Plain Text"
WF_PASTE_PARAM_PASTE_TEXT_DESC="Allow users to paste content as plain text (stripped of html)"
WF_PASTE_PARAM_PASTE_HTML="Allow Paste As HTML"
WF_PASTE_PARAM_PASTE_HTML_DESC="Allow users to paste content with html intact. Word specific and other html will automatically be cleaned based on the parameter settings."
WF_PASTE_PARAM_DIALOG="Use Paste dialog"
WF_PASTE_PARAM_DIALOG_DESC="Always use the Paste Dialog when pasting (except when using CTRL+V)"
WF_PASTE_FORCE_CLEANUP="Microsoft Word® cleanup"
WF_PASTE_FORCE_CLEANUP_DESC="Content from applications like Microsoft Word® and OpenOffice.org Writer often include code not suitable for HTML documents. The cleanup action will attempt to convert or remove this code."
WF_PASTE_FORCE_CLEANUP_DETECT="Only if detected"
WF_PASTE_FORCE_CLEANUP_ALWAYS="Always"
WF_PASTE_HELP_ABOUT="Using the Paste Buttons"
WF_PASTE_PARAM_ATTRIBUTES="Remove Attributes"
WF_PASTE_PARAM_ATTRIBUTES_DESC="A comma separated list of attributes to remove, eg: lang,align"
WF_PASTE_PARAM_REMOVE_TAGS="Remove Tags"
WF_PASTE_PARAM_REMOVE_TAGS_DESC="A comma separated list of tags to remove, eg: img,object,iframe"
WF_PASTE_PARAM_KEEP_TAGS="Keep Tags"
WF_PASTE_PARAM_KEEP_TAGS_DESC="A comma separated list of tags to keep, all other tags will be removed. eg: img,strong,em"
WF_PASTE_PARAM_PROCESS_FOOTNOTES="Process Footnotes"
WF_PASTE_PARAM_PROCESS_FOOTNOTES_DESC="Convert, unlink or remove footnote links in Office documents.<ul><li>Convert - Convert footnote links into valid anchor links</li><li>Unlink - Remove the footnote link but keep the footnote text.</li><li>Remove - Remove the footnote link completely including the text.</li></ul>"
WF_PASTE_PARAM_PROCESS_FOOTNOTES_CONVERT="Convert"
WF_PASTE_PARAM_PROCESS_FOOTNOTES_UNLINK="Unlink"
WF_PASTE_PARAM_PROCESS_FOOTNOTES_REMOVE="Remove"
WF_PASTE_PARAM_UPLOAD_IMAGES="Process images for upload"
WF_PASTE_PARAM_UPLOAD_IMAGES_DESC="Convert images in pasted content into placeholders from which an image can be selected and uploaded. If disabled, images will be removed."
WF_PASTE_PARAM_FILTER="Remove by Regular Expression"
WF_PASTE_PARAM_FILTER_DESC="Remove content by Regular Expression, eg: /joomla/gi will remove all instances of the word 'joomla' and 'Joomla'. Separate multiple expressions with a semi-colon."
;#################### Spellchecker ################################
WF_SPELLCHECKER_PARAM_ENGINE="Engine"
WF_SPELLCHECKER_PARAM_ENGINE_DESC="Select a spellchecking engine."
WF_SPELLCHECKER_PARAM_BROWSER="Browser Spellcheck"
WF_SPELLCHECKER_PARAM_ENCHANT="EnchantSpell"
WF_SPELLCHECKER_PARAM_PSPELL_PHP="PHP PSpell"
WF_SPELLCHECKER_PARAM_PSPELL_CLINE="Commmand Line PSpell"
WF_SPELLCHECKER_PARAM_LANGUAGES="Languages"
WF_SPELLCHECKER_PARAM_LANGUAGES_DESC="List of languages. List the default language first, eg: English=en,Deutsch=de"
WF_SPELLCHECKER_PARAM_PSPELL_MODE="PSPELL Mode"
WF_SPELLCHECKER_PARAM_PSPELL_MODE_DESC="PSpell specific option. PSpell has various modes that makes it more or less exact it has a impact on performance."
WF_SPELLCHECKER_PARAM_PSPELL_SPELLING="PSPELL Spelling Parameter"
WF_SPELLCHECKER_PARAM_PSPELL_SPELLING_DESC="PSpell specific setting. Enables you to control the spelling parameter of PSpell. (Advanced users only)."
WF_SPELLCHECKER_PARAM_PSPELL_JARGON="PSPELL Jargon"
WF_SPELLCHECKER_PARAM_PSPELL_JARGON_DESC="PSpell specific setting. Enables you to control the jargon parameter of PSpell. (Advanced users only)."
WF_SPELLCHECKER_PARAM_PSPELL_ENCODING="PSPELL Encoding"
WF_SPELLCHECKER_PARAM_PSPELL_ENCODING_DESC="PSpell specific setting. Enables you to control the encoding parameter of PSpell. (Advanced users only)."
WF_SPELLCHECKER_PARAM_PSPELLSHELL="PSpell location"
WF_SPELLCHECKER_PARAM_PSPELLSHELL_DESC="Location of PSpell executable file. This option is only used if the PspellShell engine is selected."
WF_SPELLCHECKER_PARAM_PSPELLSHELL_TMP="TMP Directory"
WF_SPELLCHECKER_PARAM_PSPELLSHELL_TMP_DESC="Location of a writable temp directory."
WF_SPELLCHECKER_PARAM_PSPELL_DICTIONARY="PSpell Dictionary"
WF_SPELLCHECKER_PARAM_PSPELL_DICTIONARY_DESC="Relative Path to PSPell Dictionary"
WF_SPELLCHECKER_BROWSER_STATE_DESC="Set the Browser Spellchecker On by default"
WF_SPELLCHECKER_SUGGESTIONS="Show Suggestions"
WF_SPELLCHECKER_SUGGESTIONS_DESC="Show a list of suggestions for misspelled words in a right-click (context) menu. When set to No, misspelled words will be marked in the editor, but right-click will show the normal editor menu."
;#################### Tables ############################################
WF_TABLES_TITLE="Tables"
WF_TABLES_HELP_EDIT="Creating and Editing Tables"
WF_TABLES_HELP_DELETE="Deleting Tables"
WF_TABLES_HELP_ROWS="Creating and Editing Table Rows"
WF_TABLES_HELP_CELLS="Creating and Editing Table Cells"
WF_TABLES_PARAM_WIDTH="Width"
WF_TABLES_PARAM_WIDTH_DESC="Default Table Width (pixels or percent, eg: 100% or 100px)"
WF_TABLES_PARAM_HEIGHT="Height"
WF_TABLES_PARAM_HEIGHT_DESC="Default Table Height (pixels or percent, eg: 100% or 100px)"
WF_TABLES_PARAM_BORDER="Border"
WF_TABLES_PARAM_BORDER_DESC="Default Border Width"
WF_TABLES_PARAM_COLS="Columns"
WF_TABLES_PARAM_COLS_DESC="Default Number of Columns"
WF_TABLES_PARAM_ROWS="Rows"
WF_TABLES_PARAM_ROWS_DESC="Default Number of Rows"
WF_TABLES_PARAM_CELLPADDING="Cell Padding"
WF_TABLES_PARAM_CELLPADDING_DESC="Default Cell Padding"
WF_TABLES_PARAM_CELLSPACING="Cell Spacing"
WF_TABLES_PARAM_CELLSPACING_DESC="Default Cell Spacing"
;#################### Style ############################################
WF_TAB_TEXT="Text"
WF_TAB_BACKGROUND="Background"
WF_TAB_BOX="Box"
WF_TAB_LIST="List"
WF_TAB_BLOCK="Block"
WF_TAB_BORDER="Border"
WF_TAB_POSITIONING="Positioning"
;#################### Search Replace ############################################
WF_TAB_SEARCH="Search"
WF_TAB_FIND="Search"
WF_TAB_REPLACE="Replace"
;#################### XHTMLXtras #####################################
WF_TAB_STANDARD="Standard"
WF_TAB_EVENTS="Events"
WF_LABEL_DRAGGABLE="Draggable"
WF_LABEL_CONTENTEDITBALE="Contenteditable"
WF_LABEL_HIDDEN="Hidden"
WF_LABEL_SPELLCHECK="Spellcheck"
WF_LABEL_OTHER="Other"
;#################### Lists #####################################
WF_LISTS_LOWER_ALPHA="Lower alpha"
WF_LISTS_LOWER_GREEK="Lower greek"
WF_LISTS_LOWER_ROMAN="Lower roman"
WF_LISTS_UPPER_ALPHA="Upper alpha"
WF_LISTS_UPPER_ROMAN="Upper roman"
WF_LISTS_CIRCLE="Circle"
WF_LISTS_DISC="Disc"
WF_LISTS_SQUARE="Square"
WF_NUMLIST_STYLES="Ordered List Styles"
WF_BULLIST_STYLES="Unordered List Styles"
WF_BULLIST_STYLES_DESC="Select the styles available for Unordered Lists"
WF_NUMLIST_STYLES_DESC="Select the styles available for Ordered Lists"
;#################### Manager Parameters ################################
WF_PARAM_DIRECTORY="File Directory Path"
WF_PARAM_DIRECTORY_DESC="Relative path to file directory. Defaults to images or the Editor Parameters File Directory Path value if left blank.<br />This path can contain the variables : <ul><li>$id - Will be replaced with the user ID</li><li>$username - Will be replaced with the user username</li><li>$usertype - Will be replaced with the user usertype eg: author</li><li>$profile - Will be replaced with the profile name</li><li>$year - Will be replaced with current year, eg: 2010</li><li>$month - Will be replaced with current month number, eg: 06</li><li>$day - Will be replaced with the day number, eg: 10</li></ul>"
WF_PARAM_DIRECTORY_FILTER="Directory Filter"
WF_PARAM_DIRECTORY_FILTER_DESC="Remove access to the following folders in the File Directory Path"
WF_PARAM_ALLOW_ROOT="Allow Root Access"
WF_PARAM_ALLOW_ROOT_DESC="Allow access to the Filesystem root directory. Setting this option to Yes will ignore any value set in the File Directory Path. <strong>This is not recommended for security reasons.</strong> If set to No and if the File Directory Path value is blank, the File Directory Path will default to images."
WF_PARAM_DIRECTORY_RESTRICTED="Restricted Directories"
WF_PARAM_DIRECTORY_RESTRICTED_DESC="List of directories that will not be displayed or accessible if <strong>Allow Root Access</strong> is <strong>Yes</strong>. Default is all Joomla! system folders."
WF_PARAM_DIRECTORY_CREATE="Create File Directory"
WF_PARAM_DIRECTORY_CREATE_DESC="Create above directory on first load if it does not exist."
WF_PARAM_UPLOAD_SIZE="Upload file size (KB)"
WF_PARAM_UPLOAD_SIZE_DESC="Maximum allowed size in kilobytes of uploaded files. <br />Cannot be greater than the Server Upload Size. <br />Default value is 1024 KB."
WF_PARAM_VIEWABLE="Viewable Files"
WF_PARAM_VIEWABLE_DESC="List of files that are able to be viewed in a popup window"
WF_PARAM_UPLOAD="Upload"
WF_PARAM_UPLOAD_DESC="User can upload files"
WF_PARAM_FOLDER_CREATE="Folder Create"
WF_PARAM_FOLDER_CREATE_DESC="User can create folders"
WF_PARAM_FOLDER_DELETE="Folder Delete"
WF_PARAM_FOLDER_DELETE_DESC="User can delete folders"
WF_PARAM_FOLDER_RENAME="Folder Rename"
WF_PARAM_FOLDER_RENAME_DESC="User can rename folders"
WF_PARAM_FILE_DELETE="File Delete"
WF_PARAM_FILE_DELETE_DESC="User can delete files"
WF_PARAM_FILE_RENAME="File Rename"
WF_PARAM_FILE_RENAME_DESC="User can rename files"
WF_PARAM_FILE_PASTE="File Cut/Copy/Paste"
WF_PARAM_FILE_PASTE_DESC="User can Cut/Copy/Paste files"
WF_PARAM_FILESYSTEM="Filesystem"
WF_PARAM_FILESYSTEM_DESC="Select the Filesystem to use for the File Browser"
NOT_SET="-- Not Set --"
WF_PARAM_NOT_SET="-- Not Set --"
WF_PARAM_FOLDER_PASTE="Folder Cut/Copy/Paste"
WF_PARAM_FOLDER_PASTE_DESC="User can Cut/Copy/Paste folders"
;#################### Margin ################################
WF_PARAM_MARGIN_TOP="Margin Top"
WF_PARAM_MARGIN_TOP_DESC="Default Top Margin value in pixels (px)"
WF_PARAM_MARGIN_BOTTOM="Margin Bottom"
WF_PARAM_MARGIN_BOTTOM_DESC="Default Bottom Margin value in pixels (px)"
WF_PARAM_MARGIN_LEFT="Margin Left"
WF_PARAM_MARGIN_LEFT_DESC="Default Left Margin value in pixels (px)"
WF_PARAM_MARGIN_RIGHT="Margin Right"
WF_PARAM_MARGIN_RIGHT_DESC="Default Right Margin value in pixels (px)"
WF_LABEL_MARGIN="Margin"
WF_LABEL_MARGIN_DESC="Margin::Space between the element and adjacent elements or text."
;#################### Border ################################
WF_PARAM_BORDER_ENABLE="Enable Border"
WF_PARAM_BORDER_ENABLE_DESC="Border option enabled by default"
WF_PARAM_BORDER_WIDTH="Border Width"
WF_PARAM_BORDER_WIDTH_DESC="Default Border width in pixels (px)"
WF_PARAM_BORDER_STYLE="Border Style"
WF_PARAM_BORDER_STYLE_DESC="Default Border Style"
WF_PARAM_BORDER_COLOR="Border Colour"
WF_PARAM_BORDER_COLOR_DESC="Default Border Colour"
WF_PARAM_BORDER_THICK="Thick"
WF_PARAM_BORDER_THIN="Thin"
WF_PARAM_BORDER_MEDIUM="Medium"
WF_LABEL_BORDER="Border"
WF_LABEL_BORDER_DESC="Border::Creates a border around an element with the selected parameters"
WF_OPTION_BORDER_THIN="thin"
WF_OPTION_BORDER_THICK="thick"
WF_OPTION_BORDER_MEDIUM="medium"
WF_OPTION_BORDER_NONE="none"
WF_OPTION_BORDER_SOLID="solid"
WF_OPTION_BORDER_DASHED="dashed"
WF_OPTION_BORDER_DOTTED="dotted"
WF_OPTION_BORDER_DOUBLE="double"
WF_OPTION_BORDER_GROOVE="groove"
WF_OPTION_BORDER_INSET="inset"
WF_OPTION_BORDER_OUTSET="outset"
WF_OPTION_BORDER_RIDGE="ridge"
WF_LABEL_BORDER_ENABLE="Enable Border"
WF_LABEL_BORDER_ENABLE_DESC="Enable Border by default"
WF_LABEL_BORDER_WIDTH_DESC="Width::Width of the border in pixels or named width"
WF_LABEL_BORDER_STYLE_DESC="Style::Style of the border"
WF_LABEL_BORDER_COLOR_DESC="Colour::Hex Colour of the border (eg: #000000)"
;#################### Align ################################
WF_PARAM_ALIGN_DEFAULT="Alignment"
WF_PARAM_ALIGN_DEFAULT_DESC="Default Alignment"
WF_LABEL_ALIGN="Alignment"
WF_OPTION_ALIGN_DEFAULT="--Not Set--"
WF_OPTION_ALIGN_BASELINE="Baseline"
WF_OPTION_ALIGN_TOP="Top"
WF_OPTION_ALIGN_MIDDLE="Middle"
WF_OPTION_ALIGN_BOTTOM="Bottom"
WF_OPTION_ALIGN_TEXTTOP="TextTop"
WF_OPTION_ALIGN_ABSMIDDLE="Absolute Middle"
WF_OPTION_ALIGN_ABSBOTTOM="Absolute Bottom"
WF_OPTION_ALIGN_LEFT="Left"
WF_OPTION_ALIGN_RIGHT="Right"
WF_OPTION_ALIGN_CENTER="Centre"
WF_OPTION_ALIGN_JUSTIFIED="Justified"
WF_LABEL_ALIGN_DESC="Alignment::Position of the element on the page or in relation to other elements."
;#################### Admin Labels ################################
WF_LABEL_FILTER="Filter"
WF_LABEL_GO="Go"
WF_LABEL_SEARCH="Search"
WF_LABEL_RESET="Reset"
WF_LABEL_SEARCH_OPTIONS="Search Options"
;#################### Generic ################################
WF_LABEL_NAME="Name"
WF_LABEL_NAME_DESC="Name::Defines a unique name for the element"
WF_LABEL_VERSION="Version"
WF_LABEL_AUTHOR="Author"
WF_LABEL_LANGUAGE="Language"
WF_LABEL_DATE="Date"
WF_LABEL_SIZE="Size"
WF_LABEL_AUTHOR_INFO="Author Information"
WF_LABEL_TOP="Top"
WF_LABEL_BOTTOM="Bottom"
WF_LABEL_DEFAULT="Default"
WF_LABEL_SAVE="Save"
WF_LABEL_APPLY="Apply"
WF_LABEL_SAVECLOSE="Save & Close"
WF_LABEL_SELECT="Select"
WF_LABEL_OK="Ok"
WF_LABEL_CANCEL="Cancel"
WF_LABEL_REFRESH="Refresh"
WF_LABEL_HELP="Help"
WF_LABEL_INSERT="Insert"
WF_LABEL_PROPERTIES="Properties"
WF_LABEL_ATTRIBUTES="Attributes"
WF_LABEL_ADVANCED="Advanced"
WF_LABEL_PREVIEW="Preview"
WF_LABEL_BYTES="Bytes"
WF_LABEL_KB="KB"
WF_LABEL_MB="MB"
WF_LABEL_BROWSE="Browse"
WF_LABEL_BROWSER="File Browser"
WF_LABEL_SHOW="Show"
WF_LABEL_DETAILS="Details"
WF_LABEL_FOLDERS="Folders"
WF_LABEL_DIMENSIONS="Dimensions"
WF_LABEL_DIMENSIONS_DESC="Dimensions::Width and Height of the element in pixels."
WF_LABEL_PROPORTIONAL="Proportional"
WF_LABEL_URL="URL"
WF_LABEL_URL_DESC="URL::Relative location of the image, file, article or document, eg: image.jpg (Required)"
WF_LABEL_TITLE="Title"
WF_LABEL_TITLE_DESC="Title::Text to display in a simple tooltip when the mouse is placed over the element."
WF_LABEL_STYLE="Style"
WF_LABEL_STYLE_DESC="Style::List of inline css properties to be applied to the element."
WF_LABEL_COLOR="Colour"
WF_LABEL_CLASS_LIST="Class List"
WF_LABEL_CLASS_LIST_DESC="Class List::List of available template css classes"
WF_LABEL_CLASSES="Classes"
WF_LABEL_CLASSES_DESC="Classes::List (separated by a space) of css classes to be applied to the element."
WF_LABEL_ALT="Alternate Text"
WF_LABEL_ALT_DESC="Alternate Text::A short description of the image (XHTML/WAI 508 Required)"
WF_LABEL_EQUAL="Equalize"
WF_OPTION_YES="Yes"
WF_OPTION_NO="No"
WF_OPTION_NOT_SET="--Not Set--"
WF_OPTION_NONE="None"
WF_OPTION_ALL="All"
WF_OPTION_CENTER="Centre"
WF_OPTION_TOP="Top"
WF_OPTION_BOTTOM="Bottom"
WF_OPTION_EXTERNAL="External"
WF_OPTION_AUTO="Auto"
WF_OPTION_ON="On"
WF_OPTION_OFF="Off"
WF_OPTION_BASIC="Basic"
WF_OPTION_ADVANCED="Advanced"
WF_LABEL_LANG="Language Code"
WF_LABEL_LANG_DESC="Language Code::Language code of the element, eg: en-GB"
WF_LABEL_ID="Id"
WF_LABEL_ID_DESC="Id::Unique identifier that distinguishes the element from others in the document."
WF_LABEL_ACCESSKEY="Access Key"
WF_LABEL_ACCESSKEY_DESC="Access Key::Keyboard shortcut to access the element"
WF_LABEL_TABINDEX="Tab Index"
WF_LABEL_TABINDEX_DESC="Tab Index::Tab order of the element"
WF_LABEL_WIDTH="Width"
WF_LABEL_HEIGHT="Height"
WF_LABEL_ADDRESS="Address"
WF_LABEL_LONGDESC="Long Description"
WF_LABEL_LONGDESC_DESC="Long Description::Url to a document containing a detailed description of the image."
WF_LABEL_ENABLE="Enable"
WF_LABEL_TEXT="Text"
WF_LABEL_OPTIONS="Options"
WF_LABEL_LINK="Link"
WF_LABEL_PLUGINS="Plugins"
WF_LABEL_PLUGIN="Plugin"
WF_LABEL_EXTENSIONS="Extensions"
WF_LABEL_EXTENSION="Extension"
WF_LABEL_TYPE="Type"
WF_LABEL_TYPE_DESC="Media Type"
WF_LABEL_USERNAME="Username"
WF_LABEL_PASSWORD="Password"
WF_LABEL_ERROR="Error"
WF_LABEL_ROOT="Root"
WF_MESSAGE_TREE="Building Tree List..."
WF_MESSAGE_LOAD="Loading..."
WF_LABEL_HOME="Home"
WF_ALERT_DELETE="Delete Selected Item(s)?"
WF_ALERT_RENAME="Renaming files/folders will break existing links. Continue?"
WF_LABEL_ALL_FILES="All Files"
WF_LABEL_ALERT="Alert"
WF_MESSAGE_REQUIRED="The following fields are required:"
WF_LABEL_STATE="State"
WF_STATE_DESC="Set plugin state"
WF_OPTION_DEFAULT="Default"
WF_OPTION_INHERIT="Inherit"
WF_LABEL_NEW="New"
WF_OPTION_HIDE="Hide"
WF_OPTION_IMAGE="Image"
WF_OPTION_SHOW="Show"
WF_OPTION_TEXT="Text"
WF_OPTION_STATE="State"
WF_OPTION_INHERIT="Inherit"
WF_OPTION_WEBSAFE_ALLOW_SPACES_UNDERSCORE="Replace with an underscore _"
WF_OPTION_WEBSAFE_ALLOW_SPACES_DASH="Replace with a dash -"
WF_OPTION_WEBSAFE_ALLOW_SPACES_PERIOD="Replace with a period ."
WF_LABEL_ADD="Add"
WF_LABEL_LINKS="Links"
WF_LABEL_REMOVE="Remove"
WF_LABEL_UPDATE="Update"
WF_LABEL_VALUE="Value"
WF_OPTION_TEXT_LEVEL_ELEMENTS="Text-level Elements"
WF_OPTION_GROUPING_ELEMENTS="Grouping Elements"
WF_OPTION_SECTION_ELEMENTS="Section Elements"
WF_STYLEFORMAT_ELEMENT="Tag"
WF_STYLEFORMAT_ELEMENT_DESC="Tag that the style creates, eg: span. Select 'None' to apply format to the selected tag"
WF_STYLEFORMAT_STYLES="Styles"
WF_STYLEFORMAT_STYLES_DESC="Optional list of CSS styles to apply, separated by a semi-colon eg: color:#ff0000;font-weight:bold"
WF_STYLEFORMAT_TITLE="Title"
WF_STYLEFORMAT_TITLE_DESC="Title of the format option (Required)"
WF_STYLEFORMAT_CLASSES="Classes"
WF_STYLEFORMAT_CLASSES_DESC="Optional list of classes the format will apply, separated by a space, eg: class1 class2 class3"
WF_STYLEFORMAT_ATTRIBUTES="Attributes"
WF_STYLEFORMAT_ATTRIBUTES_DESC="List of attributes to apply, in a name/value format, separated by a space, eg: title='Example' data-value='true'"
WF_STYLEFORMAT_SELECTOR="Element Selector"
WF_STYLEFORMAT_SELECTOR_DESC="Apply the format to elements matching this CSS element selector only, eg: img,a,span Leave blank for all."
WF_STYLEFORMAT_NEW="Add new style..."
WF_OPTION_SELECTED_ELEMENT="None (Apply to selected Tag)"
WF_OPTION_UPPERCASE="UPPERCASE"
WF_OPTION_LOWERCASE="lowercase"
WF_OPTION_FORM_ELEMENTS="Form Elements"
WF_LABEL_FONTS="Fonts"
WF_OPTION_RELATIVE="Relative"
WF_OPTION_ABSOLUTE="Absolute"
;#################### Position (Border, Margin, Padding etc) ################################
WF_OPTION_LEFT="Left"
WF_OPTION_RIGHT="Right"
WF_OPTION_TOP_LEFT="Top Left"
WF_OPTION_TOP_RIGHT="Top Right"
WF_OPTION_BOTTOM_LEFT="Bottom Left"
WF_OPTION_BOTTOM_RIGHT="Bottom Right"
;#################### Target ################################
WF_LABEL_TARGET="Target"
WF_LABEL_TARGET_DESC="Target::Specifies where the link destination document will be loaded."
WF_OPTION_TARGET_SELF="Open in current window / frame"
WF_OPTION_TARGET_PARENT="Open in parent window / frame"
WF_OPTION_TARGET_TOP="Open in top frame (replaces all frames)"
WF_OPTION_TARGET_BLANK="Open in new window"
;#################### Clear ################################
WF_LABEL_CLEAR="Clear"
WF_LABEL_CLEAR_DESC="Clear::Sides of the element where other elements cannot be situated."
WF_OPTION_CLEAR_LEFT="Left"
WF_OPTION_CLEAR_RIGHT="Right"
WF_OPTION_CLEAR_BOTH="Both"
WF_OPTION_CLEAR_NONE="None"
;#################### Language Direction ################################
WF_LABEL_DIR="Language Direction"
WF_LABEL_DIR_DESC="Language Direction::Text direction of the element"
WF_OPTION_LTR="Left to Right"
WF_OPTION_RTL="Right to Left"
;#################### Buttons ################################
WF_BUTTON_HELP="Help"
WF_BUTTON_INSERT="Insert"
WF_BUTTON_CANCEL="Cancel"
WF_BUTTON_REFRESH="Refresh"
WF_BUTTON_UPLOAD="Upload"
WF_BUTTON_FOLDER_NEW="New Folder"
WF_BUTTON_DELETE="Delete"
WF_BUTTON_RENAME="Rename"
WF_BUTTON_COPY="Copy"
WF_BUTTON_CUT="Cut"
WF_BUTTON_PASTE="Paste"
WF_BUTTON_VIEW="View"
WF_BUTTON_FILE_INSERT="Insert"
;#################### Plugin Tabs ################################
WF_TAB_GENERAL="General"
WF_TAB_ADVANCED="Advanced"
WF_TAB_POPUP="Popup"
WF_TAB_POPUPS="Popups"
;#################### Popups ################################
WF_POPUPS="Popups"
WF_POPUP_ENABLE="Enable Popup"
WF_POPUP_ENABLE_DESC="Enable Popup::Click to enable popups. Additional 3rd party plugins may be required."
WF_POPUP_TYPE_DESC="Popup Type::Select Popup Type from available options"
WF_POPUP_TYPE="Popup Type"
WF_POPUP_TYPE_SELECT="Select Type"
WF_POPUP_MEDIABOX="Requires <a href='http://www.joomlacontenteditor.net/mediabox' title='JCE MediaBox' target='_blank'><strong>JCE MediaBox</strong></a>"
WF_POPUP_TEXT_DESC="Text::If no content selection is made or if the selection is plain text, enter new text or edit the text for the link here"
WF_POPUP_TEXT="Text"
;#################### Manager Help ################################
WF_MANAGER_HELP="Manager Help"
WF_MANAGER_HELP_UPLOAD="Upload a file"
WF_MANAGER_HELP_DELETE="Delete a file / folder"
WF_MANAGER_HELP_RENAME="Rename a file / folder"
WF_MANAGER_HELP_CREATE="Create a folder"
;#################### Manager Errors ################################
WF_MANAGER_NEW_FOLDER_ERROR="Unable to create folder - '%s'"
WF_MANAGER_MOVE_FILES_ERROR="Unable to move item - '%s'"
WF_MANAGER_COPY_FILES_ERROR="Unable to copy item - '%s'"
WF_MANAGER_RENAME_FILES_ERROR="Unable to rename file - '%s'"
WF_MANAGER_RENAME_FOLDERS_ERROR="Unable to rename folder - '%s'"
WF_MANAGER_DELETE_FOLDERS_ERROR="Unable to delete folder - '%s'"
WF_MANAGER_DELETE_FILES_ERROR="Unable to delete file - '%s'"
WF_MANAGER_UPLOAD_ERROR="Upload failed!"
WF_MANAGER_UPLOAD_NOSUPPORT="Upload method not supported"
WF_MANAGER_FOLDER_NOT_EMPTY="Unable to delete folder - '%s'. Folder not empty"
WF_MANAGER_FOLDER_EXISTS="A folder with the name '%s' already exists"
WF_MANAGER_FILE_EXISTS="A file with the name '%s' already exists in this folder"
WF_MANAGER_UPLOAD_INVALID_EXT_ERROR="Upload failed : Invalid file type"
WF_MANAGER_UPLOAD_INVALID_IMAGE_ERROR="Upload failed : Not a valid image file."
WF_MANAGER_UPLOAD_RESTRICTED_ERROR="Upload failed : Restricted"
WF_MANAGER_UPLOAD_MIME_ERROR="Upload failed: Invalid Mime Type"
WF_MANAGER_COPY_INTO_ERROR="Unable to copy folder - Folders cannot be copied into themselves."
WF_MANAGER_UPLOAD_SIZE_ERROR="Upload failed - %s (%s Kb) exceeds the maximum allowed size of %s Kb"
WF_MANAGER_FILE_LIMIT_ERROR="File limit reached."
WF_MANAGER_FILE_SIZE_LIMIT_ERROR="Size limit reached."
WF_MANAGER_UPLOAD_EXIF_REMOVE_ERROR="Upload failed: Exif data could not be removed from this image."
;#################### Manager File suffix ################################
WF_MANAGER_FILE_SUFFIX="_copy"
;#################### Extensions ################################
WF_LABEL_EXTENSION_ENABLE="Enable"
WF_LABEL_EXTENSION_ENABLE_DESC="Enable this extension for the plugin"
WF_EXTENSIONS_LINKS_TITLE="Links"
WF_EXTENSIONS_LINKS_DESC="Link Extensions"
WF_EXTENSIONS_POPUPS_TITLE="Popups"
WF_EXTENSIONS_POPUPS_DESC="Popup Extensions"
WF_EXTENSIONS_FILESYSTEM_TITLE="Filesystem"
WF_EXTENSIONS_FILESYSTEM_TITLE_DESC="Filesystem used for File Browser"
WF_FILESYSTEM_PARAMETERS="FileSystem Parameters"
WF_FILESYSTEM_JOOMLA_TITLE="Joomla! (Default)"
WF_FILESYSTEM_JOOMLA_DESC="Native Joomla! Filesystem functions"
WF_EXTENSIONS_AGGREGATOR_TITLE="Media Options"
WF_EXTENSIONS_AGGREGATOR_DEFAULT_DESC="Select and set options for various media sources"
WF_EXTENSIONS_POPUPS_DEFAULT_LABEL="Default"
WF_EXTENSIONS_POPUPS_DEFAULT_DESC="Select the default Popup to use."
;## JCE JoomlaLinks ##
WF_LINKS_JOOMLALINKS_TITLE="Joomla! Links"
WF_LINKS_JOOMLALINKS_DESC="Joomla! Links::Adds Joomla! Content, Menu, WebLink and Contact links to the Link Browser."
WF_LINKS_JOOMLALINKS_MENU="Menu"
WF_LINKS_JOOMLALINKS_CONTENT="Content"
WF_LINKS_JOOMLALINKS_UNCATEGORIZED="Uncategorized"
WF_LINKS_JOOMLALINKS_WEBLINKS="Weblinks"
WF_LINKS_JOOMLALINKS_TAGS="Tags"
WF_LINKS_JOOMLALINKS_CONTACTS="Contacts"
WF_LINKS_JOOMLALINKS_PARAM_CONTENT="Content List"
WF_LINKS_JOOMLALINKS_PARAM_CONTENT_DESC="Show Content Links List"
WF_LINKS_JOOMLALINKS_PARAM_UNCATEGORIZED="Uncategorized List"
WF_LINKS_JOOMLALINKS_PARAM_UNCATEGORIZED_DESC="Show Uncategorized Links List"
WF_LINKS_JOOMLALINKS_PARAM_MENU="Menu List"
WF_LINKS_JOOMLALINKS_PARAM_MENU_DESC="Show Menu Links List"
WF_LINKS_JOOMLALINKS_PARAM_CONTACT="Contact List"
WF_LINKS_JOOMLALINKS_PARAM_CONTACT_DESC="Show Contacts Links List"
WF_LINKS_JOOMLALINKS_PARAM_WEBLINKS="Weblinks List"
WF_LINKS_JOOMLALINKS_PARAM_WEBLINKS_DESC="Show Weblinks Links List"
WF_LINKS_JOOMLALINKS_PARAM_TAGS="Tags List"
WF_LINKS_JOOMLALINKS_PARAM_TAGS_DESC="Show Tags Links List"
WF_LINKS_JOOMLALINKS_PARAM_ARTICLE_ALIAS="Add Article Alias"
WF_LINKS_JOOMLALINKS_PARAM_ARTICLE_ALIAS_DESC="Add alias to article links"
WF_LINKS_JOOMLALINKS_PARAM_ARTICLE_MENU_LINK="Resolve Menu Links"
WF_LINKS_JOOMLALINKS_PARAM_ARTICLE_MENU_LINK_DESC="Resolve menu short links eg: index.php?Itemid=30 to the full menu link if available. No is recommended if SEF is activated."
WF_LINKS_JOOMLALINKS_PARAM_WEBLINKS_ALIAS="Add Weblinks Alias"
WF_LINKS_JOOMLALINKS_PARAM_WEBLINKS_ALIAS_DESC="Add alias to weblink links"
WF_LINKS_JOOMLALINKS_PARAM_ARTICLE_UNPUBLISHED="Show unpublished"
WF_LINKS_JOOMLALINKS_PARAM_ARTICLE_UNPUBLISHED_DESC="Show published and unpublished articles"
WF_LINKS_JOOMLALINKS_PARAM_TAGS_ALIAS="Add Tags Alias"
WF_LINKS_JOOMLALINKS_PARAM_TAGS_ALIAS_DESC="Add alias to tag links"
WF_LINKS_JOOMLALINKS_SEF_URL="Convert to SEF"
WF_LINKS_JOOMLALINKS_SEF_URL_DESC="URLs are converted to SEF URLs where possible. As this option can have long term consequences with content storage (the SEF URL will be stored with the article content in the database and will not be automatically updated when changes are made to SEF settings), it is not recommended for most users."
;## Window Popups ##
WF_POPUPS_WINDOW_TITLE="Window Popups"
WF_POPUPS_WINDOW_DESC="Create and editor browser window popups"
WF_POPUPS_WINDOW_OPTION_TITLE="Title"
WF_POPUPS_WINDOW_OPTION_TITLE_DESC="Title::Popup Window Title"
WF_POPUPS_WINDOW_MODE="Mode"
WF_POPUPS_WINDOW_MODE_DESC="Window Mode::Basic - Shows only the content. Advanced - Set various window options such as scrollbars, location bar etc. on or off."
WF_POPUPS_WINDOW_OPTIONS="Options"
WF_POPUPS_WINDOW_SCROLLBARS="Show Scrollbars"
WF_POPUPS_WINDOW_SCROLLBARS_DESC="Show Scollbars::Show scrollbars if window content dimensions exceed window dimensions"
WF_POPUPS_WINDOW_RESIZABLE="Resizable"
WF_POPUPS_WINDOW_RESIZABLE_DESC="Resizable::Window can be resized"
WF_POPUPS_WINDOW_POSITION="Position"
WF_POPUPS_WINDOW_POSITION_DESC="Position::Position of the window on the screen"
WF_POPUPS_WINDOW_LOCATIONBAR="Show Location Bar"
WF_POPUPS_WINDOW_LOCATIONBAR_DESC="Show Location Bar::Show Window Location Bar"
WF_POPUPS_WINDOW_TOOLBAR="Show Toolbar"
WF_POPUPS_WINDOW_TOOLBAR_DESC="Show Toolbar::Show Window Toolbar"
WF_POPUPS_WINDOW_LOCATION="Show Location Bar"
WF_POPUPS_WINDOW_LOCATION_DESC="Show Location Bar::Show Window Location Bar"
WF_POPUPS_WINDOW_STATUS="Show Status Bar"
WF_POPUPS_WINDOW_STATUS_DESC="Show Status Bar::Show Window Status Bar"
WF_POPUPS_WINDOW_MENUBAR="Show Menu Bar"
WF_POPUPS_WINDOW_MENUBAR_DESC="Show Menu Bar::Show Window Menu Bar"
; ## JCE MediaBox ##
WF_POPUPS_JCEMEDIABOX_TITLE="JCE MediaBox Popups"
WF_POPUPS_JCEMEDIABOX_DESC="Create and editor popup links for JCE MediaBox"
WF_POPUPS_JCEMEDIABOX_OPTION_TITLE="Title"
WF_POPUPS_JCEMEDIABOX_OPTION_TITLE_DESC="Title::Title for the popup"
WF_POPUPS_JCEMEDIABOX_CAPTION="Caption"
WF_POPUPS_JCEMEDIABOX_CAPTION_DESC="Caption::Caption for the popup."
WF_POPUPS_JCEMEDIABOX_GROUP="Group"
WF_POPUPS_JCEMEDIABOX_GROUP_DESC="Group::Group to associate this popup with. Popups in the same group will be shown as a gallery."
WF_POPUPS_JCEMEDIABOX_PARAMS="Parameters"
WF_POPUPS_JCEMEDIABOX_PARAMS_DESC="Parameters::Set additional parameters for the popup or popup content. A parameter name and value are required. Click the Add button to add parameters and the remove button to remove them."
WF_POPUPS_JCEMEDIABOX_DIMENSIONS="Dimensions"
WF_POPUPS_JCEMEDIABOX_DIMENSIONS_DESC="Dimensions::Width / Height of the popup window in pixels. Omit either or both values to use fullscreen dimensions."
WF_POPUPS_JCEMEDIABOX_ICON="Popup Icon"
WF_POPUPS_JCEMEDIABOX_ICON_DESC="Popup Icon::Enable / Disable display of popup icon on target item"
WF_POPUPS_JCEMEDIABOX_ICON_POSITION="Icon Position"
WF_POPUPS_JCEMEDIABOX_ICON_POSITION_DESC="Icon Position::Position of the popup icon on the target item. If target item is a text link, position is limited to left / right."
WF_POPUPS_JCEMEDIABOX_ICON_TOP_LEFT="Top Left"
WF_POPUPS_JCEMEDIABOX_ICON_BOTTOM_LEFT="Bottom Left"
WF_POPUPS_JCEMEDIABOX_ICON_TOP_RIGHT="Top Right"
WF_POPUPS_JCEMEDIABOX_ICON_BOTTOM_RIGHT="Bottom Right"
WF_POPUPS_JCEMEDIABOX_UTILITIES_REQUIRED="The JCE Utilities plugin must be installed and enabled to use the Popup feature."
WF_POPUPS_JCEMEDIABOX_AUTO="Auto Popup"
WF_POPUPS_JCEMEDIABOX_AUTO_DESC="Auto Popup::Popup will open automatically on page load based on the selected setting.<br />Single - open once per browser session.<br /> Multiple - open on every page load."
WF_POPUPS_JCEMEDIABOX_AUTO_SINGLE="Single"
WF_POPUPS_JCEMEDIABOX_AUTO_MULTIPLE="Multiple"
WF_POPUPS_JCEMEDIABOX_HIDE="Hide Popup Link"
WF_POPUPS_JCEMEDIABOX_HIDE_DESC="Hide Popup Link::Hides the popup link and child elements. Useful when creating image galleries launched from a single link."
WF_POPUPS_JCEMEDIABOX_MEDIATYPE="Media Type"
WF_POPUPS_JCEMEDIABOX_MEDIATYPE_DESC="Media Type::Select Popup Media Type. This is crucial in determining how the popup will load. Some formats such as images and social media like Youtube and Vimeo etc. can be detected from the popup url by JCE MediaBox"
WF_POPUPS_JCEMEDIABOX_IMAGE="Image"
WF_POPUPS_JCEMEDIABOX_INTERNAL="Internal Links"
WF_POPUPS_JCEMEDIABOX_EXTERNAL="External Links / IFrame"
WF_POPUPS_JCEMEDIABOX_FLASH="Adobe® Flash®"
WF_POPUPS_JCEMEDIABOX_QUICKTIME="Quicktime®"
WF_POPUPS_JCEMEDIABOX_WINDOWSMEDIA="Windows Media Player®"
WF_POPUPS_JCEMEDIABOX_DIRECTOR="Adobe® Shockwave®"
WF_POPUPS_JCEMEDIABOX_REAL="RealPlayer®"
WF_POPUPS_JCEMEDIABOX_SILVERLIGHT="Silverlight®"
WF_POPUPS_JCEMEDIABOX_DIVX="DivX®"
WF_POPUPS_JCEMEDIABOX_VIDEO_MP4="MP4 Video"
WF_POPUPS_JCEMEDIABOX_VIDEO_WEBM="WebM Video"
WF_POPUPS_JCEMEDIABOX_AUDIO_MP3="MP3 Audio"
WF_POPUPS_JCEMEDIABOX_AUDIO_WEBM="WebM Audio"
WF_POPUPS_JCEMEDIABOX_YOUTUBE="Youtube Video"
WF_POPUPS_JCEMEDIABOX_VIMEO="Vimeo Video"
WF_POPUPS_JCEMEDIABOX_VERSION_ERROR="Version %s or later of the <a href='http://www.joomlacontenteditor.net/downloads/mediabox' target='_blank' title='JCE MediaBox'>JCE MediaBox System Plugin</a> is required"
WF_AGGREGATOR_MORE_OPTIONS="Additional Options"
; ## Youtube Aggregator ##
WF_AGGREGATOR_YOUTUBE_TITLE="Youtube"
WF_AGGREGATOR_YOUTUBE_DESC="Youtube - External Media Resource"
WF_AGGREGATOR_YOUTUBE_CONTROLS="Show Controls"
WF_AGGREGATOR_YOUTUBE_CONTROLS_DESC="Controls::Show Player Controls"
WF_AGGREGATOR_YOUTUBE_RELATED="Related Videos"
WF_AGGREGATOR_YOUTUBE_RELATED_DESC="Related Videos::Select the scope of related videos to show when the video finishes."
WF_AGGREGATOR_YOUTUBE_RELATED_ALL="Any related videos"
WF_AGGREGATOR_YOUTUBE_RELATED_CHANNEL="Same channel only"
WF_AGGREGATOR_YOUTUBE_MODESTBRANDING="Modest Branding"
WF_AGGREGATOR_YOUTUBE_MODESTBRANDING_DESC="Modest Branding::This parameter lets you use a YouTube player that does not show a YouTube logo. Set the parameter value to 1 to prevent the YouTube logo from displaying in the control bar. Note that a small YouTube text label will still display in the upper-right corner of a paused video when the user's mouse pointer hovers over the player."
WF_AGGREGATOR_YOUTUBE_PRIVACY="Enable privacy-enhanced mode"
WF_AGGREGATOR_YOUTUBE_PRIVACY_DESC="Enable privacy-enhanced mode::Enable privacy-enhanced mode"
WF_AGGREGATOR_YOUTUBE_AUTOPLAY="Autoplay"
WF_AGGREGATOR_YOUTUBE_AUTOPLAY_DESC="Autoplay::Sets whether or not the initial video will autoplay when the player loads"
WF_AGGREGATOR_YOUTUBE_LOOP="Loop"
WF_AGGREGATOR_YOUTUBE_LOOP_DESC="Loop::In the case of a single video player, checking this option will cause the player to play the initial video again and again. In the case of a playlist player (or custom player), the player will play the entire playlist and then start again at the first video."
WF_AGGREGATOR_YOUTUBE_PLAYLIST="Playlist"
WF_AGGREGATOR_YOUTUBE_PLAYLIST_DESC="Playlist::Value is a comma-separated list of video IDs to play. If you specify a value, the first video that plays will be the VIDEO_ID specified in the URL path, and the videos specified in the playlist parameter will play thereafter."
WF_AGGREGATOR_YOUTUBE_START="Start"
WF_AGGREGATOR_YOUTUBE_START_DESC="Start::This parameter causes the player to begin playing the video at the given number of seconds from the start of the video"
WF_AGGREGATOR_YOUTUBE_END="End"
WF_AGGREGATOR_YOUTUBE_END_DESC="End::This parameter specifies the time, measured in seconds from the start of the video, when the player should stop playing the video"
WF_AGGREGATOR_YOUTUBE_WIDTH_DESC="Default Width to use for the Video"
WF_AGGREGATOR_YOUTUBE_HEIGHT_DESC="Default Height to use for the Video"
WF_AGGREGATOR_YOUTUBE_PARAMS="Parameters"
WF_AGGREGATOR_YOUTUBE_PARAMS_DESC="Parameters::Additional parameters for the video"
; ## Vimeo Aggregator ##
WF_AGGREGATOR_VIMEO_TITLE="Vimeo"
WF_AGGREGATOR_VIMEO_DESC="Vimeo - External Media Resource"
WF_AGGREGATOR_VIMEO_COLOR="Colour"
WF_AGGREGATOR_VIMEO_COLOR_DESC="Colour::Player Colour"
WF_AGGREGATOR_VIMEO_EMBED="Use Old Embed Method"
WF_AGGREGATOR_VIMEO_EMBED_DESC="Use Old Embed Method::Embed Vimeo video using OBJECT and EMBED elements instead of IFrame"
WF_AGGREGATOR_VIMEO_AUTOPLAY="Autoplay"
WF_AGGREGATOR_VIMEO_AUTOPLAY_DESC="Autoplay::Sets whether or not the initial video will autoplay when the player loads"
WF_AGGREGATOR_VIMEO_LOOP="Loop"
WF_AGGREGATOR_VIMEO_LOOP_DESC="Loop::Checking this option will cause the player to play the video again and again."
WF_AGGREGATOR_VIMEO_FULLSCREEN="Fullscreen"
WF_AGGREGATOR_VIMEO_FULLSCREEN_DESC="Fullscreen::Allow Fullscreen option"
WF_AGGREGATOR_VIMEO_BYLINE="Byline"
WF_AGGREGATOR_VIMEO_BYLINE_DESC="Byline::Show Intro Byline"
WF_AGGREGATOR_VIMEO_PORTRAIT="Portrait"
WF_AGGREGATOR_VIMEO_PORTRAIT_DESC="Portrait::Show Intro Portrait"
WF_AGGREGATOR_VIMEO_INTROTITLE="Title"
WF_AGGREGATOR_VIMEO_INTROTITLE_DESC="Title::Show Intro Title"
WF_AGGREGATOR_VIMEO_INTRO="Intro Options"
WF_AGGREGATOR_VIMEO_WIDTH_DESC="Default Width to use for the Video"
WF_AGGREGATOR_VIMEO_HEIGHT_DESC="Default Height to use for the Video"
WF_AGGREGATOR_VIMEO_SPECIAL="Special stuff"
; ## Dailymotion Aggregator
WF_AGGREGATOR_DAILYMOTION_TITLE="Dailymotion"
WF_AGGREGATOR_DAILYMOTION_DESC="Dailymotion - External Media Resource"
WF_AGGREGATOR_DAILYMOTION_SIZE="Player size"
WF_AGGREGATOR_DAILYMOTION_START="Start at"
WF_AGGREGATOR_DAILYMOTION_AUTOPLAY="Autoplay"
WF_AGGREGATOR_DAILYMOTION_SIZE_SMALL="Small (320 x 180)"
WF_AGGREGATOR_DAILYMOTION_SIZE_MEDIUM="Medium (480 x 270)"
WF_AGGREGATOR_DAILYMOTION_SIZE_LARGE="Large (560 x 315)"
WF_AGGREGATOR_DAILYMOTION_SIZE_CUSTOM="Custom Width"
; ## Video Options
WF_AGGREGATOR_VIDEO_TITLE="HTML5 Video"
WF_AGGREGATOR_VIDEO_AUTOPLAY="Autoplay"
WF_AGGREGATOR_VIDEO_AUTOPLAY_DESC="Autoplay::Sets whether or not the video will autoplay when the player loads"
WF_AGGREGATOR_VIDEO_LOOP="Loop"
WF_AGGREGATOR_VIDEO_LOOP_DESC="Loop::Checking this option will cause the player to play the video again and again."
WF_AGGREGATOR_VIDEO_CONTROLS="Show Controls"
WF_AGGREGATOR_VIDEO_CONTROLS_DESC="Controls::Show Player Controls"
WF_AGGREGATOR_VIDEO_MUTE="Mute"
WF_AGGREGATOR_VIDEO_MUTE_DESC="Mute::Set the video volume to off (muted)"
; ## Audio Options
WF_AGGREGATOR_AUDIO_TITLE="HTML5 Audio"
WF_AGGREGATOR_AUDIO_AUTOPLAY="Autoplay"
WF_AGGREGATOR_AUDIO_AUTOPLAY_DESC="Autoplay::Sets whether or not the audio will autoplay when the player loads"
WF_AGGREGATOR_AUDIO_LOOP="Loop"
WF_AGGREGATOR_AUDIO_LOOP_DESC="Loop::Checking this option will cause the player to play the audio again and again."
WF_AGGREGATOR_AUDIO_CONTROLS="Show Controls"
WF_AGGREGATOR_AUDIO_CONTROLS_DESC="Controls::Show Player Controls"
WF_AGGREGATOR_AUDIO_MUTE="Mute"
WF_AGGREGATOR_AUDIO_MUTE_DESC="Mute::Set the audio volume to off (muted)"
; ## ACL Permissions ##
JACTION_ADMIN="Configure Component"
JACTION_ADMIN_COMPONENT_DESC="Allow users in this group to edit the Permissions options for this extension"
JACTION_MANAGE="Access Component"
JACTION_MANAGE_COMPONENT_DESC="Allow users in this group to access this extension"
WF_ACTION_CONFIG="Editor Global Configuration"
WF_ACTION_CONFIG_DESC="Allow users in this group to access and edit the Editor Global Configuration"
WF_ACTION_PROFILES="Editor Profiles"
WF_ACTION_PROFILES_DESC="Allow users in this group to access and edit Editor Profiles"
WF_ACTION_PREFERENCES="Administration Options"
WF_ACTION_PREFERENCES_DESC="Allow users in this group to access and edit the Administration Options"
WF_ACTION_INSTALLER="Install Add-ons"
WF_ACTION_INSTALLER_DESC="Allow users in this group to Install Add-ons"
WF_ACTION_BROWSER="File Browser"
WF_ACTION_BROWSER_DESC="Allow users in this group to access the File Browser"
WF_ACTION_MEDIABOX="JCE MediaBox Parameters"
WF_ACTION_MEDIABOX_DESC="Allow users in this group to access the MediaBox Parameters"
WF_RULES_ACTION="Action"
WF_RULES_ALLOWED="Allowed"
WF_RULES_DENIED="Denied"
WF_RULES_GROUP="%s"
WF_RULES_GROUPS="Groups"
WF_RULES_NOT_SET="Not Set"
WF_RULES_SELECT_ALLOW_DENY_GROUP="Allow or deny %s for users in the %s group"
WF_RULES_SELECT_SETTING="Select New Setting"
WF_RULES_SETTINGS_DESC="Manage the permission settings for the user groups below"
; ## Filegroups && Trademark Labels ##
WF_FILEGROUP_ALL="All Files"
WF_FILEGROUP_IMAGE="Images"
WF_FILEGROUP_HTML="HTML Files"
WF_FILEGROUP_ARCHIVE="Archive Files"
WF_FILEGROUP_TEXT="Text Files"
WF_FILEGROUP_VIDEO="Video"
WF_FILEGROUP_AUDIO="Audio"
WF_FILEGROUP_ACROBAT="Adobe® Acrobat®"
WF_FILEGROUP_EXCEL="Microsoft Excel®"
WF_FILEGROUP_WORD="Microsoft Word®"
WF_FILEGROUP_POWERPOINT="Microsoft Powerpoint®"
WF_FILEGROUP_OFFICE="Microsoft Office®"
WF_FILEGROUP_FLASH="Adobe® Flash®"
WF_FILEGROUP_SHOCKWAVE="Adobe® Shockwave®"
WF_FILEGROUP_QUICKTIME="Quicktime®"
WF_FILEGROUP_WINDOWSMEDIA="Windows Media Player®"
WF_FILEGROUP_SILVERLIGHT="Silverlight®"
WF_FILEGROUP_DIVX="DivX®"
WF_FILEGROUP_OPENOFFICE="OpenOffice.org"
WF_FILEGROUP_REAL="RealPlayer®"
; ## Link Search ##
WF_EXTENSIONS_SEARCH_TITLE="Search"
WF_EXTENSIONS_SEARCH_DEFAULT=""
WF_SEARCH_ALL_WORDS="All words"
WF_SEARCH_ALPHABETICAL="Alphabetical"
WF_SEARCH_ANY_WORDS="Any words"
WF_SEARCH_ERROR_ENTERKEYWORD="Enter a search keyword"
WF_SEARCH_ERROR_IGNOREKEYWORD="One or more common words were ignored in the search."
WF_SEARCH_ERROR_SEARCH_MESSAGE="Search term must be a minimum of %1$s characters and a maximum of %2$s characters."
WF_SEARCH_EXACT_PHRASE="Exact Phrase"
WF_SEARCH_FIELD_SEARCH_AREAS_DESC="Show the search areas checkboxes"
WF_SEARCH_FIELD_SEARCH_AREAS_LABEL="Use Search Areas"
WF_SEARCH_FOR="Search for:"
WF_SEARCH_MOST_POPULAR="Most Popular"
WF_SEARCH_NEWEST_FIRST="Newest First"
WF_SEARCH_OLDEST_FIRST="Oldest First"
WF_SEARCH_ORDERING="Ordering:"
WF_SEARCH_SEARCH="Search"
WF_SEARCH_SEARCH_AGAIN="Search Again"
WF_SEARCH_SEARCH_KEYWORD="Search Keyword:"
WF_SEARCH_SEARCH_KEYWORD_N_RESULTS_1="<strong>Total: One result found.</strong>"
WF_SEARCH_SEARCH_KEYWORD_N_RESULTS="<strong>Total: %s results found.</strong>"
WF_SEARCH_SEARCH_ONLY="Search Only:"
WF_SEARCH_SEARCH_RESULT="Search Result"
WF_CATEGORY="Category"
WF_LINK_SEARCH_TITLE="Link Search"
WF_SEARCH_LINK_TITLE="Link Search"
WF_LINK_SEARCH_DESC="Search for links and anchors in Joomla! Extensions"
WF_PARAM_LINK_SEARCH_PLUGINS="Link Search Plugins"
WF_PARAM_LINK_SEARCH_PLUGINS_DESC="Joomla! Search Plugins available to Link Search"
WF_LINK_SEARCH_SEF_URL="Convert to SEF"
WF_LINK_SEARCH_SEF_URL_DESC="URLs returned in the search are converted to SEF URLs where possible. As this option can have long term consequences with content storage (the SEF URL will be stored with the article content in the database and will not be automatically updated when changes are made to SEF settings), it is not recommended for most users."
ALERTNOTAUTH="You are not authorised to view this resource."
; Styles
WF_STYLES_TITLE="Edit CSS Style"
WF_STYLES_APPLY="Apply"
WF_STYLES_TEXT_TAB="Text"
WF_STYLES_BACKGROUND_TAB="Background"
WF_STYLES_BLOCK_TAB="Block"
WF_STYLES_BOX_TAB="Box"
WF_STYLES_BORDER_TAB="Border"
WF_STYLES_LIST_TAB="List"
WF_STYLES_POSITIONING_TAB="Positioning"
WF_STYLES_TEXT_PROPS="Text"
WF_STYLES_TEXT_FONT="Font"
WF_STYLES_TEXT_SIZE="Size"
WF_STYLES_TEXT_WEIGHT="Weight"
WF_STYLES_TEXT_STYLE="Style"
WF_STYLES_TEXT_VARIANT="Variant"
WF_STYLES_TEXT_LINEHEIGHT="Line height"
WF_STYLES_TEXT_CASE="Case"
WF_STYLES_TEXT_COLOR="Color"
WF_STYLES_TEXT_DECORATION="Decoration"
WF_STYLES_TEXT_OVERLINE="overline"
WF_STYLES_TEXT_UNDERLINE="underline"
WF_STYLES_TEXT_STRIKETROUGH="strikethrough"
WF_STYLES_TEXT_BLINK="blink"
WF_STYLES_TEXT_NONE="none"
WF_STYLES_BACKGROUND_COLOR="Background color"
WF_STYLES_BACKGROUND_IMAGE="Background image"
WF_STYLES_BACKGROUND_REPEAT="Repeat"
WF_STYLES_BACKGROUND_ATTACHMENT="Attachment"
WF_STYLES_BACKGROUND_HPOS="Horizontal position"
WF_STYLES_BACKGROUND_VPOS="Vertical position"
WF_STYLES_BLOCK_WORDSPACING="Word spacing"
WF_STYLES_BLOCK_LETTERSPACING="Letter spacing"
WF_STYLES_BLOCK_VERTICAL_ALIGNMENT="Vertical alignment"
WF_STYLES_BLOCK_TEXT_ALIGN="Text align"
WF_STYLES_BLOCK_TEXT_INDENT="Text indent"
WF_STYLES_BLOCK_WHITESPACE="Whitespace"
WF_STYLES_BLOCK_DISPLAY="Display"
WF_STYLES_BOX_WIDTH="Width"
WF_STYLES_BOX_HEIGHT="Height"
WF_STYLES_BOX_FLOAT="Float"
WF_STYLES_BOX_CLEAR="Clear"
WF_STYLES_PADDING="Padding"
WF_STYLES_SAME="Same for all"
WF_STYLES_TOP="Top"
WF_STYLES_RIGHT="Right"
WF_STYLES_BOTTOM="Bottom"
WF_STYLES_LEFT="Left"
WF_STYLES_MARGIN="Margin"
WF_STYLES_STYLE="Style"
WF_STYLES_WIDTH="Width"
WF_STYLES_HEIGHT="Height"
WF_STYLES_COLOR="Color"
WF_STYLES_LIST_TYPE="Type"
WF_STYLES_BULLET_IMAGE="Bullet image"
WF_STYLES_POSITION="Position"
WF_STYLES_POSITIONING_TYPE="Type"
WF_STYLES_VISIBILITY="Visibility"
WF_STYLES_ZINDEX="Z-index"
WF_STYLES_OVERFLOW="Overflow"
WF_STYLES_PLACEMENT="Placement"
WF_STYLES_CLIP="Clip"
WF_STYLES_TOGGLE_INSERT_SPAN="Insert span at selection"
; Tables
WF_TABLE_GENERAL_TAB="General"
WF_TABLE_ADVANCED_TAB="Advanced"
WF_TABLE_GENERAL_PROPS="General properties"
WF_TABLE_ADVANCED_PROPS="Advanced properties"
WF_TABLE_ROWTYPE="Row type"
WF_TABLE_WIDTH="Width"
WF_TABLE_HEIGHT="Height"
WF_TABLE_COLS="Cols"
WF_TABLE_ROWS="Rows"
WF_TABLE_CELLSPACING="Cellspacing"
WF_TABLE_CELLPADDING="Cellpadding"
WF_TABLE_BORDER="Border"
WF_TABLE_ALIGN="Alignment"
WF_TABLE_ALIGN_DESC="Alignment of the table"
WF_TABLE_ALIGN_DEFAULT="Default"
WF_TABLE_ALIGN_LEFT="Left"
WF_TABLE_ALIGN_RIGHT="Right"
WF_TABLE_ALIGN_MIDDLE="Center"
WF_TABLE_ROW_TITLE="Table row properties"
WF_TABLE_CELL_TITLE="Table cell properties"
WF_TABLE_CELL_TYPE="Cell type"
WF_TABLE_VALIGN="Vertical alignment"
WF_TABLE_ALIGN_TOP="Top"
WF_TABLE_ALIGN_BOTTOM="Bottom"
WF_TABLE_BORDERCOLOR="Border color"
WF_TABLE_BGCOLOR="Background color"
WF_TABLE_MERGE_CELLS_TITLE="Merge table cells"
WF_TABLE_ID="Id"
WF_TABLE_STYLE="Style"
WF_TABLE_LANGDIR="Language direction"
WF_TABLE_LANGCODE="Language code"
WF_TABLE_MIME="Target MIME type"
WF_TABLE_LTR="Left to right"
WF_TABLE_RTL="Right to left"
WF_TABLE_BGIMAGE="Background image"
WF_TABLE_SUMMARY="Summary"
WF_TABLE_TD="Data"
WF_TABLE_TH="Header"
WF_TABLE_CELL_CELL="Update current cell"
WF_TABLE_CELL_ROW="Update all cells in row"
WF_TABLE_CELL_ALL="Update all cells in table"
WF_TABLE_ROW_ROW="Update current row"
WF_TABLE_ROW_ODD="Update odd rows in table"
WF_TABLE_ROW_EVEN="Update even rows in table"
WF_TABLE_ROW_ALL="Update all rows in table"
WF_TABLE_THEAD="Table Head"
WF_TABLE_TBODY="Table Body"
WF_TABLE_TFOOT="Table Foot"
WF_TABLE_SCOPE="Scope"
WF_TABLE_ROWGROUP="Row Group"
WF_TABLE_COLGROUP="Col Group"
WF_TABLE_COL_LIMIT="You've exceeded the maximum number of columns of {$cols}."
WF_TABLE_ROW_LIMIT="You've exceeded the maximum number of rows of {$rows}."
WF_TABLE_CELL_LIMIT="You've exceeded the maximum number of cells of {$cells}."
WF_TABLE_MISSING_SCOPE="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."
WF_TABLE_CAPTION="Table caption"
WF_TABLE_FRAME="Frame"
WF_TABLE_FRAME_NONE="none"
WF_TABLE_FRAME_GROUPS="groups"
WF_TABLE_FRAME_ROWS="rows"
WF_TABLE_FRAME_COLS="cols"
WF_TABLE_FRAME_ALL="all"
WF_TABLE_RULES="Rules"
WF_TABLE_RULES_VOID="void"
WF_TABLE_RULES_ABOVE="above"
WF_TABLE_RULES_BELOW="below"
WF_TABLE_RULES_HSIDES="hsides"
WF_TABLE_RULES_LHS="lhs"
WF_TABLE_RULES_RHS="rhs"
WF_TABLE_RULES_VSIDES="vsides"
WF_TABLE_RULES_BOX="box"
WF_TABLE_RULES_BORDER="border"
WF_TABLE_CELL_PROPS="Table cell properties"
WF_TABLE_COL_AFTER="Insert column after"
WF_TABLE_COL_BEFORE="Insert column before"
WF_TABLE_COL_DELETE="Delete Column"
WF_TABLE_DELETE="Delete Table"
WF_TABLE_INSERT="Insert / Edit Table"
WF_TABLE_MERGE="Merge table cells"
WF_TABLE_ROW_AFTER="Insert row after"
WF_TABLE_ROW_BEFORE="Insert row before"
WF_TABLE_ROW_DELETE="Delete row"
WF_TABLE_ROW_PROPS="Table row properties"
WF_TABLE_SPLIT="Split merged table cells"
WF_TABLE_PAD_EMPTY_CELLS="Pad empty cells"
WF_TABLE_PAD_EMPTY_CELLS_DESC="Pad empty table cells with a non-breaking space. This is required to maintain the structure of empty cells and to display their border and background colour. Default is Yes."
WF_TABEL_COL="Column"
WF_TABEL_ROW="Row"
WF_TABLE_SHOW_BUTTONS="Show Buttons"
WF_TABLE_SHOW_BUTTONS_DESC="Show all table buttons in the editor toolbar. By default all buttons will be shown. If set to No, the buttons will be collapsed into a dropdown menu on the main table button."
; XHTMLXtras dialog
WF_XHTMLXTRAS_ATTRIBUTE_LABEL_TITLE="Title"
WF_XHTMLXTRAS_ATTRIBUTE_LABEL_ID="ID"
WF_XHTMLXTRAS_ATTRIBUTE_LABEL_CLASS="Class"
WF_XHTMLXTRAS_ATTRIBUTE_LABEL_STYLE="Style"
WF_XHTMLXTRAS_ATTRIBUTE_LABEL_CITE="Cite"
WF_XHTMLXTRAS_ATTRIBUTE_LABEL_DATETIME="Date/Time"
WF_XHTMLXTRAS_ATTRIBUTE_LABEL_LANGDIR="Text Direction"
WF_XHTMLXTRAS_ATTRIBUTE_OPTION_LTR="Left to right"
WF_XHTMLXTRAS_ATTRIBUTE_OPTION_RTL="Right to left"
WF_XHTMLXTRAS_ATTRIBUTE_LABEL_LANGCODE="Language"
WF_XHTMLXTRAS_ATTRIBUTE_LABEL_TABINDEX="TabIndex"
WF_XHTMLXTRAS_ATTRIBUTE_LABEL_ACCESSKEY="AccessKey"
WF_XHTMLXTRAS_ATTRIBUTE_EVENTS_TAB="Events"
WF_XHTMLXTRAS_ATTRIBUTE_ATTRIB_TAB="Attributes"
WF_XHTMLXTRAS_GENERAL_TAB="General"
WF_XHTMLXTRAS_ATTRIB_TAB="Attributes"
WF_XHTMLXTRAS_EVENTS_TAB="Events"
WF_XHTMLXTRAS_FIELDSET_GENERAL_TAB="General Settings"
WF_XHTMLXTRAS_FIELDSET_ATTRIB_TAB="Element Attributes"
WF_XHTMLXTRAS_FIELDSET_EVENTS_TAB="Element Events"
WF_XHTMLXTRAS_TITLE_INS_ELEMENT="Insertion Element"
WF_XHTMLXTRAS_TITLE_DEL_ELEMENT="Deletion Element"
WF_XHTMLXTRAS_TITLE_ACRONYM_ELEMENT="Acronym Element"
WF_XHTMLXTRAS_TITLE_ABBR_ELEMENT="Abbreviation Element"
WF_XHTMLXTRAS_TITLE_CITE_ELEMENT="Citation Element"
WF_XHTMLXTRAS_REMOVE="Remove"
WF_XHTMLXTRAS_INSERT_DATE="Insert current date/time"
WF_XHTMLXTRAS_OPTION_LTR="Left to right"
WF_XHTMLXTRAS_OPTION_RTL="Right to left"
; Accessability
WF_ACCESSABILITY_USAGE_TITLE="General Usage"
WF_CLIPBOARD_DESC="Clipboard::Cut, Copy Paste"
WF_CLIPBOARD_TITLE="Clipboard"
WF_TAB_META="General"
WF_TAB_APPEARANCE="Appearance"
;## Styles Select ##
WF_STYLESELECT_STYLES="Styles List Options"
WF_STYLESELECT_STYLES_DESC="Select which sources to use for the Styles List items"
WF_STYLESELECT_STYLESHEET="Editor / Profile Stylesheets"
WF_STYLESELECT_CUSTOM="Custom Styles"
WF_STYLESELECT_CUSTOM_DESC="Create Custom Styles to add to the Styles list by specifying a title, tag and optional CSS style and class."
WF_STYLESELECT_CUSTOM_CLASSES="Custom Classes"
WF_STYLESELECT_CUSTOM_CLASSES_DESC="A comma separated list of class names to include in the Styles list."
WF_STYLESELECT_STYLES_SORT="Sort Styles Alphabetically"
WF_STYLESELECT_STYLES_SORT_DESC="Sort styles extracted from stylesheets alphabetically from A - Z"
WF_STYLESELECT_STYLESHEET_CUSTOM="Custom Stylesheet"
WF_STYLESELECT_STYLESHEET_CUSTOM_DESC="A custom stylesheet containing css classes to display in the Style Select list. The classes must exist in your template stylesheet."
;## Non Editable ##
WF_NONEDITABLE_TITLE="Non-Editable Content"
WF_NONEDITABLE_DESC="Mark content as editable or non-editable using special class names: mceEditable and mceNonEditable"
WF_NONEDITABLE_NONEDITABLE_CLASS="Non-Editable Class"
WF_NONEDITABLE_NONEDITABLE_CLASS_DESC="Classname to use to mark content as non-editable. Default is <em>mceNonEditable</em>"
WF_NONEDITABLE_EDITABLE_CLASS="Editable Class"
WF_NONEDITABLE_EDITABLE_CLASS_DESC="Classname to use to mark content as editable within existing non-editable regions. Default is <em>mceEditable</em>"
;## Clipboard ##
WF_OPTION_CUT="Cut"
WF_OPTION_COPY="Copy"
WF_OPTION_PASTE="Paste"
WF_OPTION_PASTETEXT="Paste as plain text"
;## Preview ##
WF_PREVIEW_PARAM_PROCESS_CONTENT="Process Content"
WF_PREVIEW_PARAM_PROCESS_CONTENT_DESC="Process editor content through Joomla Content Plugins before displaying the preview."
WF_LOREM_IPSUM="Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua."
WF_LINK_SEARCH_REMOVE_ALIAS="Remove Alias"
WF_LINK_SEARCH_REMOVE_ALIAS_DESC="Remove the alias from found links"
WF_PARAM_WORDCOUNT_LIMIT="Word Count Limit"
WF_PARAM_WORDCOUNT_LIMIT_DESC="When a limit above 0 is set, the Word Count will display the number of words of the limit remaining, showing a negative number when limit is exceeded. Set as 0 for no limit."
WF_PARAM_WORDCOUNT_ALERT="Word Count Alert"
WF_PARAM_WORDCOUNT_ALERT_DESC="Show an alert message when the word count limit is reached."
WF_CHARMAP_APPEND="Add Characters"
WF_CHARMAP_APPEND_DESC="Add characters to the Character Map using Key / Value pairs, where the Key is the Character Numeric Code, eg: &#8756; and the Value is the Character Name, eg: Therefore"
WF_CHARMAP_APPEND_CODE="Code"
WF_CHARMAP_APPEND_TEXT="Description"
WF_JOOMLABUTTONS_TITLE="Joomla Editor Buttons"
WF_JOOMLABUTTONS_DESC="Display a dropdown list of Joomla Editor-Xtd buttons in the editor toolbar instead of below the editor."
;#################### Emotions ################################
WF_EMOTIONS_TITLE="Emoticons"
WF_EMOTIONS_DESC="Insert an emotion character image"
WF_EMOTIONS_PARAM_URL="Emoticons URL"
WF_EMOTIONS_PARAM_URL_DESC="Relative URL to Emoticons image folder. Default is Emoticons plugin img folder."
WF_EMOTIONS_PARAM_SMILIES="Emoticons List"
WF_EMOTIONS_PARAM_SMILIES_DESC="Comma separated list of emoticons including extension, eg: smiley-confused.gif,smiley-cool.gif"