logo       

[MediaWiki-CVS] SVN: [54048] trunk/extensions/UsabilityInitiative/EditToolb: msg#01426

mediawiki-cvs

Subject: [MediaWiki-CVS] SVN: [54048] trunk/extensions/UsabilityInitiative/EditToolbar/EditToolbar. js

http://www.mediawiki.org/wiki/Special:Code/MediaWiki/54048

Revision: 54048
Author: catrope
Date: 2009-07-30 21:15:09 +0000 (Thu, 30 Jul 2009)

Log Message:
-----------
EditToolbar: Per ^demon's suggestion, auto-generate specialchar entries from a
flat array where possible. This reduces EditToolbar.js from 150 KB to 25 KB.

Modified Paths:
--------------
trunk/extensions/UsabilityInitiative/EditToolbar/EditToolbar.js

Modified: trunk/extensions/UsabilityInitiative/EditToolbar/EditToolbar.js
===================================================================
--- trunk/extensions/UsabilityInitiative/EditToolbar/EditToolbar.js
2009-07-30 21:02:49 UTC (rev 54047)
+++ trunk/extensions/UsabilityInitiative/EditToolbar/EditToolbar.js
2009-07-30 21:15:09 UTC (rev 54048)
@@ -19,6 +19,24 @@
);
});

+// Generate special chars tools from an array of characters
+function generateSpecialChars( chars ) {
+ var retval = [ ];
+ for ( var i = 0; i < chars.length; i++ ) {
+ retval[i] = {
+ 'type': 'link',
+ 'label': chars[i],
+ 'action': {
+ 'type': 'encapsulate',
+ 'options': {
+ 'pre': chars[i]
+ }
+ }
+ };
+ }
+ return retval;
+}
+
/**
* This enormous structure is what makes the toolbar what it is. Customization
* of this structure prior to the document being ready and thus executing the
@@ -348,7374 +366,236 @@
'latin': {
'labelMsg': 'edittoolbar-characters-page-latin',
'layout': 'characters',
- 'characters': [
- {
- 'type': 'link',
- 'label': "\u00c1",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00c1"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00e1",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00e1"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00c0",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00c0"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00e0",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00e0"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00c2",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00c2"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00e2",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00e2"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00c4",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00c4"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00e4",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00e4"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00c3",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00c3"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00e3",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00e3"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u01cd",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u01cd"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u01ce",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u01ce"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0100",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0100"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0101",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0101"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0102",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0102"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0103",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0103"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0104",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0104"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0105",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0105"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00c5",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00c5"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00e5",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00e5"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0106",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0106"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0107",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0107"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0108",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0108"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0109",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0109"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00c7",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00c7"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00e7",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00e7"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u010c",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u010c"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u010d",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u010d"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u010a",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u010a"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u010b",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u010b"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0110",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0110"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0111",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0111"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u010e",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u010e"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u010f",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u010f"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u1e0c",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u1e0c"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u1e0d",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u1e0d"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00c9",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00c9"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00e9",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00e9"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00c8",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00c8"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00e8",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00e8"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00ca",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00ca"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00ea",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00ea"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00cb",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00cb"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00eb",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00eb"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u1ebc",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u1ebc"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u1ebd",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u1ebd"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u011a",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u011a"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u011b",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u011b"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0112",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0112"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0113",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0113"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0114",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0114"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0115",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0115"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0116",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0116"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0117",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0117"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0118",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0118"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0119",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0119"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u011c",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u011c"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u011d",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u011d"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0122",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0122"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0123",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0123"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u011e",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u011e"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u011f",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u011f"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0120",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0120"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0121",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0121"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0124",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0124"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0125",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0125"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u1e24",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u1e24"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u1e25",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u1e25"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0126",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0126"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0127",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0127"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00cd",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00cd"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00ed",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00ed"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00cc",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00cc"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00ec",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00ec"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00ce",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00ce"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00ee",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00ee"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00cf",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00cf"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00ef",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00ef"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0128",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0128"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0129",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0129"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u01cf",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u01cf"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u01d0",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u01d0"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u012a",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u012a"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u012b",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u012b"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u012c",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u012c"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u012d",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u012d"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0130",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0130"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0131",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0131"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u012e",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u012e"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u012f",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u012f"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0134",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0134"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0135",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0135"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0136",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0136"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0137",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0137"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0139",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0139"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u013a",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u013a"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u013b",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u013b"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u013c",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u013c"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u013d",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u013d"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u013e",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u013e"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u1e36",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u1e36"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u1e37",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u1e37"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u1e38",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u1e38"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u1e39",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u1e39"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0141",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0141"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0142",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0142"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u013f",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u013f"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0140",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0140"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u1e42",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u1e42"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u1e43",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u1e43"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0143",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0143"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0144",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0144"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00d1",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00d1"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00f1",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00f1"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0145",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0145"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0146",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0146"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0147",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0147"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0148",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0148"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u1e46",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u1e46"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u1e47",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u1e47"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00d3",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00d3"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00f3",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00f3"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00d2",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00d2"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00f2",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00f2"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00d4",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00d4"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00f4",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00f4"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00d6",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00d6"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00f6",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00f6"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00d5",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00d5"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00f5",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00f5"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u01d1",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u01d1"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u01d2",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u01d2"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u014c",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u014c"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u014d",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u014d"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u014e",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u014e"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u014f",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u014f"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u01ea",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u01ea"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u01eb",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u01eb"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0150",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0150"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0151",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0151"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0154",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0154"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0155",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0155"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0156",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0156"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0157",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0157"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0158",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0158"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0159",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0159"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u1e5a",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u1e5a"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u1e5b",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u1e5b"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u1e5c",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u1e5c"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u1e5d",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u1e5d"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u015a",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u015a"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u015b",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u015b"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u015c",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u015c"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u015d",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u015d"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u015e",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u015e"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u015f",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u015f"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0160",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0160"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0161",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0161"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u1e62",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u1e62"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u1e63",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u1e63"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0162",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0162"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0163",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0163"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0164",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0164"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0165",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0165"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u1e6c",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u1e6c"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u1e6d",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u1e6d"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00da",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00da"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00fa",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00fa"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00d9",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00d9"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00f9",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00f9"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00db",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00db"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00fb",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00fb"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00dc",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00dc"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00fc",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00fc"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0168",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0168"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0169",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0169"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u016e",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u016e"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u016f",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u016f"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u01d3",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u01d3"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u01d4",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u01d4"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u016a",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u016a"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u016b",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u016b"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u01d6",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u01d6"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u01d8",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u01d8"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u01da",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u01da"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u01dc",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u01dc"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u016c",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u016c"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u016d",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u016d"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0172",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0172"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0173",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0173"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0170",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0170"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0171",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0171"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0174",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0174"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0175",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0175"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00dd",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00dd"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00fd",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00fd"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0176",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0176"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0177",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0177"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0178",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0178"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00ff",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00ff"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u1ef8",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u1ef8"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u1ef9",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u1ef9"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0232",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0232"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0233",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0233"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0179",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0179"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u017a",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u017a"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u017d",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u017d"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u017e",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u017e"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u017b",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u017b"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u017c",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u017c"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00c6",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00c6"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00e6",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00e6"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u01e2",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u01e2"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u01e3",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u01e3"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00d8",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00d8"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00f8",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00f8"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0152",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0152"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0153",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0153"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00df",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00df"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00f0",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00f0"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00de",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00de"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u00fe",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u00fe"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u018f",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u018f"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0259",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0259"
- }
- }
- }
- ]
+ 'characters': generateSpecialChars( ["\u00c1",
+ "\u00e1", "\u00c0", "\u00e0", "\u00c2",
+ "\u00e2", "\u00c4", "\u00e4", "\u00c3",
+ "\u00e3", "\u01cd", "\u01ce", "\u0100",
+ "\u0101", "\u0102", "\u0103", "\u0104",
+ "\u0105", "\u00c5", "\u00e5", "\u0106",
+ "\u0107", "\u0108", "\u0109", "\u00c7",
+ "\u00e7", "\u010c", "\u010d", "\u010a",
+ "\u010b", "\u0110", "\u0111", "\u010e",
+ "\u010f", "\u1e0c", "\u1e0d", "\u00c9",
+ "\u00e9", "\u00c8", "\u00e8", "\u00ca",
+ "\u00ea", "\u00cb", "\u00eb", "\u1ebc",
+ "\u1ebd", "\u011a", "\u011b", "\u0112",
+ "\u0113", "\u0114", "\u0115", "\u0116",
+ "\u0117", "\u0118", "\u0119", "\u011c",
+ "\u011d", "\u0122", "\u0123", "\u011e",
+ "\u011f", "\u0120", "\u0121", "\u0124",
+ "\u0125", "\u1e24", "\u1e25", "\u0126",
+ "\u0127", "\u00cd", "\u00ed", "\u00cc",
+ "\u00ec", "\u00ce", "\u00ee", "\u00cf",
+ "\u00ef", "\u0128", "\u0129", "\u01cf",
+ "\u01d0", "\u012a", "\u012b", "\u012c",
+ "\u012d", "\u0130", "\u0131", "\u012e",
+ "\u012f", "\u0134", "\u0135", "\u0136",
+ "\u0137", "\u0139", "\u013a", "\u013b",
+ "\u013c", "\u013d", "\u013e", "\u1e36",
+ "\u1e37", "\u1e38", "\u1e39", "\u0141",
+ "\u0142", "\u013f", "\u0140", "\u1e42",
+ "\u1e43", "\u0143", "\u0144", "\u00d1",
+ "\u00f1", "\u0145", "\u0146", "\u0147",
+ "\u0148", "\u1e46", "\u1e47", "\u00d3",
+ "\u00f3", "\u00d2", "\u00f2", "\u00d4",
+ "\u00f4", "\u00d6", "\u00f6", "\u00d5",
+ "\u00f5", "\u01d1", "\u01d2", "\u014c",
+ "\u014d", "\u014e", "\u014f", "\u01ea",
+ "\u01eb", "\u0150", "\u0151", "\u0154",
+ "\u0155", "\u0156", "\u0157", "\u0158",
+ "\u0159", "\u1e5a", "\u1e5b", "\u1e5c",
+ "\u1e5d", "\u015a", "\u015b", "\u015c",
+ "\u015d", "\u015e", "\u015f", "\u0160",
+ "\u0161", "\u1e62", "\u1e63", "\u0162",
+ "\u0163", "\u0164", "\u0165", "\u1e6c",
+ "\u1e6d", "\u00da", "\u00fa", "\u00d9",
+ "\u00f9", "\u00db", "\u00fb", "\u00dc",
+ "\u00fc", "\u0168", "\u0169", "\u016e",
+ "\u016f", "\u01d3", "\u01d4", "\u016a",
+ "\u016b", "\u01d6", "\u01d8", "\u01da",
+ "\u01dc", "\u016c", "\u016d", "\u0172",
+ "\u0173", "\u0170", "\u0171", "\u0174",
+ "\u0175", "\u00dd", "\u00fd", "\u0176",
+ "\u0177", "\u0178", "\u00ff", "\u1ef8",
+ "\u1ef9", "\u0232", "\u0233", "\u0179",
+ "\u017a", "\u017d", "\u017e", "\u017b",
+ "\u017c", "\u00c6", "\u00e6", "\u01e2",
+ "\u01e3", "\u00d8", "\u00f8", "\u0152",
+ "\u0153", "\u00df", "\u00f0", "\u00de",
+ "\u00fe", "\u018f", "\u0259" ] )
},
'ipa': {
labelMsg: 'edittoolbar-characters-page-ipa',
layout: 'characters',
- characters: [
- {
- type: 'link',
- label: 'p',
- action: {
- type: 'encapsulate',
- options: {
- pre: 'p'
- }
- }
- },
- {
- type: 'link',
- label: 'tÌ',
- action: {
- type: 'encapsulate',
- options: {
- pre: 'tÌ'
- }
- }
- },
- {
- type: 'link',
- label: 't',
- action: {
- type: 'encapsulate',
- options: {
- pre: 't'
- }
- }
- },
- {
- type: 'link',
- label: 'Ê',
- action: {
- type: 'encapsulate',
- 'options': {
- 'pre': 'Ê'
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'c',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'c'
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'k',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'k'
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'q',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'q'
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê'
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'b',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'b',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'dÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'dÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'd',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'd',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'tÍs',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'tÍs',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'tÍÊ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'tÍÊ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'tÍÉ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'tÍÉ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'dÍz',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'dÍz',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'dÍÊ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'dÍÊ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'dÍÊ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'dÍÊ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'f',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'f',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Î',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Î',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 's',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 's',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ã',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ã',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'x',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'x',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ï',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ï',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ä',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ä',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'h',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'h',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Î',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Î',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'v',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'v',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ã',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ã',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'z',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'z',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'm',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'm',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'mÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'mÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'nÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'nÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'nÌÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'nÌÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'n',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'n',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'nÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'nÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Å',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Å',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÅÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÅÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÅÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÅÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÊÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÊÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'r',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'r',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'rÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'rÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÊÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÊÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'lÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'lÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'lÌÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'lÌÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'l',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'l',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'lÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'lÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÊÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÊÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÊÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÊÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'w',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'w',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'j',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'j',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ç',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ç',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ç',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ç',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '!',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '!',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ç',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ç',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ë',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ë',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ë',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ë',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ë',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ë',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ë',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ë',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ë',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ë',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ë',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ë',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ë',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ë',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'i',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'i',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'iÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'iÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ä',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ä',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'y',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'y',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'yÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'yÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'á',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'á',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÊÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÊÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÊÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÊÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÊÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÊÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÊÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÊÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'u',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'u',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'uÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'uÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Å',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Å',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÊÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÊÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÊÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÊÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'e',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'e',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'eÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'eÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'á',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'á',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ã',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ã',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÃÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÃÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÃÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÃÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'o',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'o',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'oÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'oÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ã',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ã',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Å',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Å',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÅÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÅÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÅÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÅÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ê',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ê',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÊÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÊÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÊÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÊÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ã',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ã',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÃÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÃÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÃÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÃÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'a',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'a',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'aÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'aÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ã',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ã',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'É',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'É',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÉÌ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'ÉÌ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ë',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ë',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ë',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ë',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ë',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ë',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ë',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ë',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ë',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ë',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '.',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '.',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '|',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '|',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- }
- ]
+ characters: generateSpecialChars( ["p",
+ "t\u032a", "t", "\u0288", "c", "k",
+ "q", "\u02a1", "\u0294", "b",
+ "d\u032a", "d", "\u0256", "\u025f",
+ "\u0261", "\u0262", "\u0253", "\u0257",
+ "\u0284", "\u0260", "\u029b",
+ "t\u0361s", "t\u0361\u0283",
+ "t\u0361\u0255", "d\u0361z",
+ "d\u0361\u0292", "d\u0361\u0291",
+ "\u0278", "f", "\u03b8", "s", "\u0283",
+ "\u0285", "\u0286", "\u0282", "\u0255",
+ "\u00e7", "\u0267", "x", "\u03c7",
+ "\u0127", "\u029c", "h", "\u03b2", "v",
+ "\u028d", "\u00f0", "z", "\u0292",
+ "\u0293", "\u0290", "\u0291", "\u029d",
+ "\u0263", "\u0281", "\u0295", "\u0296",
+ "\u02a2", "\u0266", "\u026c", "\u026e",
+ "m", "m\u0329", "\u0271",
+ "\u0271\u0329", "\u0271\u030d",
+ "n\u032a", "n\u032a\u030d", "n",
+ "n\u0329", "\u0273", "\u0273\u0329",
+ "\u0272", "\u0272\u0329", "\u014b",
+ "\u014b\u030d", "\u014b\u0329",
+ "\u0274", "\u0274\u0329", "\u0299",
+ "\u0299\u0329", "r", "r\u0329",
+ "\u0280", "\u0280\u0329", "\u027e",
+ "\u027d", "\u027f", "\u027a",
+ "l\u032a", "l\u032a\u0329", "l",
+ "l\u0329", "\u026b", "\u026b\u0329",
+ "\u026d", "\u026d\u0329", "\u028e",
+ "\u028e\u0329", "\u029f",
+ "\u029f\u0329", "w", "\u0265",
+ "\u028b", "\u0279", "\u027b", "j",
+ "\u0270", "\u0298", "\u01c2", "\u01c0",
+ "!", "\u01c1", "\u02b0", "\u02b1",
+ "\u02b7", "\u02b8", "\u02b2", "\u02b3",
+ "\u207f", "\u02e1", "\u02b4", "\u02b5",
+ "\u02e2", "\u02e3", "\u02e0", "\u02b6",
+ "\u02e4", "\u02c1", "\u02c0", "\u02bc",
+ "i", "i\u032f", "\u0129", "y",
+ "y\u032f", "\u1ef9", "\u026a",
+ "\u026a\u032f", "\u026a\u0303",
+ "\u028f", "\u028f\u032f",
+ "\u028f\u0303", "\u0268",
+ "\u0268\u032f", "\u0268\u0303",
+ "\u0289", "\u0289\u032f",
+ "\u0289\u0303", "\u026f",
+ "\u026f\u032f", "\u026f\u0303", "u",
+ "u\u032f", "\u0169", "\u028a",
+ "\u028a\u032f", "\u028a\u0303", "e",
+ "e\u032f", "\u1ebd", "\u00f8",
+ "\u00f8\u032f", "\u00f8\u0303",
+ "\u0258", "\u0258\u032f",
+ "\u0258\u0303", "\u0275",
+ "\u0275\u032f", "\u0275\u0303",
+ "\u0264", "\u0264\u032f",
+ "\u0264\u0303", "o", "o\u032f",
+ "\u00f5", "\u025b", "\u025b\u032f",
+ "\u025b\u0303", "\u0153",
+ "\u0153\u032f", "\u0153\u0303",
+ "\u025c", "\u025c\u032f",
+ "\u025c\u0303", "\u0259",
+ "\u0259\u032f", "\u0259\u0303",
+ "\u025e", "\u025e\u032f",
+ "\u025e\u0303", "\u028c",
+ "\u028c\u032f", "\u028c\u0303",
+ "\u0254", "\u0254\u032f",
+ "\u0254\u0303", "\u00e6",
+ "\u00e6\u032f", "\u00e6\u0303",
+ "\u0276", "\u0276\u032f",
+ "\u0276\u0303", "a", "a\u032f",
+ "\u00e3", "\u0250", "\u0250\u032f",
+ "\u0250\u0303", "\u0251",
+ "\u0251\u032f", "\u0251\u0303",
+ "\u0252", "\u0252\u032f",
+ "\u0252\u0303", "\u02c8", "\u02cc",
+ "\u02d0", "\u02d1", "\u02d8", ".",
+ "\u203f", "|", "\u2016" ] )
},
'symbols': {
'labelMsg':
'edittoolbar-characters-page-symbols',
'layout': 'characters',
- 'characters': [
- {
+ 'characters': generateSpecialChars( [ "~", "|",
+ "\u00a1", "\u00bf", "\u2020", "\u2021",
+ "\u2194", "\u2191", "\u2193", "\u2022",
+ "\u00b6", "#", "\u00bd", "\u2153",
+ "\u2154", "\u00bc", "\u00be", "\u215b",
+ "\u215c", "\u215d", "\u215e", "\u221e",
+ "\u2018", "\u201c", "\u2019",
+ "\u201d" ]).concat( [ {
'type': 'link',
- 'label': '~',
+ 'label': "\u00ab\u00bb",
'action': {
'type': 'encapsulate',
'options': {
- 'pre': '~',
- 'post': ''
+ 'pre': "\u00ab",
+ 'post': "\u00bb"
}
}
- },
- {
- 'type': 'link',
- 'label': '|',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '|',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '#',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '#',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'ÂÂ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Â',
- 'post': 'Â'
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'à',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'à',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '$',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '$',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Æ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Æ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'á',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'á',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'à',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'à',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'â',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'â',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'mÂ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'mÂ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'mÂ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'mÂ',
- 'post': ''
- }
- }
- }
- ]
+ } ] ).concat( generateSpecialChars( [
+ "\u00a4", "\u20b3", "\u0e3f", "\u20b5",
+ "\u00a2", "\u20a1", "\u20a2", "$",
+ "\u20ab", "\u20af", "\u20ac", "\u20a0",
+ "\u20a3", "\u0192", "\u20b4", "\u20ad",
+ "\u20a4", "\u2133", "\u20a5", "\u20a6",
+ "\u2116", "\u20a7", "\u20b0", "\u00a3",
+ "\u17db", "\u20a8", "\u20aa", "\u09f3",
+ "\u20ae", "\u20a9", "\u00a5", "\u2660",
+ "\u2663", "\u2665", "\u2666",
+ "m\u00b2", "m\u00b3", ] ) )
},
- 'greek':{
+ 'greek': {
'labelMsg': 'edittoolbar-characters-page-greek',
'layout': 'characters',
'attributes': {
'lang': 'hl'
},
- 'characters': [
- {
- 'type': 'link',
- 'label': "\u0391",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0391"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0386",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0386"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03b1",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03b1"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03ac",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03ac"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0392",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0392"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03b2",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03b2"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0393",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0393"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03b3",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03b3"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0394",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0394"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03b4",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03b4"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0395",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0395"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0388",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0388"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03b5",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03b5"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03ad",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03ad"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0396",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0396"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03b6",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03b6"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0397",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0397"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0389",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0389"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03b7",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03b7"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03ae",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03ae"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0398",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0398"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03b8",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03b8"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u0399",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u0399"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u038a",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u038a"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03b9",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03b9"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03af",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03af"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u039a",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u039a"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03ba",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03ba"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u039b",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u039b"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03bb",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03bb"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u039c",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u039c"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03bc",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03bc"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u039d",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u039d"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03bd",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03bd"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u039e",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u039e"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03be",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03be"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u039f",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u039f"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u038c",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u038c"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03bf",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03bf"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03cc",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03cc"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03a0",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03a0"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03c0",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03c0"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03a1",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03a1"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03c1",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03c1"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03a3",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03a3"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03c3",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03c3"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03c2",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03c2"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03a4",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03a4"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03c4",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03c4"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03a5",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03a5"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u038e",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u038e"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03c5",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03c5"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03cd",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03cd"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03a6",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03a6"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03c6",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03c6"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03a7",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03a7"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03c7",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03c7"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03a8",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03a8"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03c8",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03c8"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03a9",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03a9"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u038f",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u038f"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03c9",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03c9"
- }
- }
- },
- {
- 'type': 'link',
- 'label': "\u03ce",
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': "\u03ce"
- }
- }
- }
- ]
+ 'characters': generateSpecialChars( [ "\u0391",
+ "\u0386", "\u03b1", "\u03ac", "\u0392",
+ "\u03b2", "\u0393", "\u03b3", "\u0394",
+ "\u03b4", "\u0395", "\u0388", "\u03b5",
+ "\u03ad", "\u0396", "\u03b6", "\u0397",
+ "\u0389", "\u03b7", "\u03ae", "\u0398",
+ "\u03b8", "\u0399", "\u038a", "\u03b9",
+ "\u03af", "\u039a", "\u03ba", "\u039b",
+ "\u03bb", "\u039c", "\u03bc", "\u039d",
+ "\u03bd", "\u039e", "\u03be", "\u039f",
+ "\u038c", "\u03bf", "\u03cc", "\u03a0",
+ "\u03c0", "\u03a1", "\u03c1", "\u03a3",
+ "\u03c3", "\u03c2", "\u03a4", "\u03c4",
+ "\u03a5", "\u038e", "\u03c5", "\u03cd",
+ "\u03a6", "\u03c6", "\u03a7", "\u03c7",
+ "\u03a8", "\u03c8", "\u03a9", "\u038f",
+ "\u03c9", "\u03ce" ] )
},
'cyrillic': {
'labelMsg':
'edittoolbar-characters-page-cyrillic',
'layout': 'characters',
- 'characters': [
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ó',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ó',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ò',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ò',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ò',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ò',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ä',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ä',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ó',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ó',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ò',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ò',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ò',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ò',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ó',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ó',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ó',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ó',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ò',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ò',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ò',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ò',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ò',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ò',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ò',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ò',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ò',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ò',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ó',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ó',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ò',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ò',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ò',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ò',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ó',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ó',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ò',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ò',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ò',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ò',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ó',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ó',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ð',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ð',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ó',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ó',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ò',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ò',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ò',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ò',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ò',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ò',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ò',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ò',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ò',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ò',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ñ',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ñ',
- 'post': ''
- }
- }
- }
- ]
+ 'characters': generateSpecialChars( [ "\u0410",
+ "\u0430", "\u04d8", "\u04d9", "\u0411",
+ "\u0431", "\u0412", "\u0432", "\u0413",
+ "\u0433", "\u0490", "\u0491", "\u0403",
+ "\u0453", "\u0492", "\u0493", "\u0414",
+ "\u0434", "\u0402", "\u0452", "\u0415",
+ "\u0435", "\u0404", "\u0454", "\u0401",
+ "\u0451", "\u0416", "\u0436", "\u0417",
+ "\u0437", "\u0405", "\u0455", "\u0418",
+ "\u0438", "\u0406", "\u0456", "\u0407",
+ "\u0457", "\u0130", "\u0419", "\u0439",
+ "\u04e2", "\u04e3", "\u0408", "\u0458",
+ "\u041a", "\u043a", "\u040c", "\u045c",
+ "\u049a", "\u049b", "\u041b", "\u043b",
+ "\u0409", "\u0459", "\u041c", "\u043c",
+ "\u041d", "\u043d", "\u040a", "\u045a",
+ "\u04a2", "\u04a3", "\u041e", "\u043e",
+ "\u04e8", "\u04e9", "\u041f", "\u043f",
+ "\u0420", "\u0440", "\u0421", "\u0441",
+ "\u0422", "\u0442", "\u040b", "\u045b",
+ "\u0423", "\u0443", "\u040e", "\u045e",
+ "\u04ee", "\u04ef", "\u04b0", "\u04b1",
+ "\u04ae", "\u04af", "\u0424", "\u0444",
+ "\u0425", "\u0445", "\u04b2", "\u04b3",
+ "\u04ba", "\u04bb", "\u0426", "\u0446",
+ "\u0427", "\u0447", "\u04b6", "\u04b7",
+ "\u040f", "\u045f", "\u0428", "\u0448",
+ "\u0429", "\u0449", "\u042a", "\u044a",
+ "\u042b", "\u044b", "\u042c", "\u044c",
+ "\u042d", "\u044d", "\u042e", "\u044e",
+ "\u042f", "\u044f" ] )
},
'arabic': {
'labelMsg':
'edittoolbar-characters-page-arabic',
@@ -7727,492 +607,18 @@
'styles': {
'font-size': '1.25em'
},
- 'characters': [
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ù',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ù',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ù',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ù',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ù',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ù',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ù',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ù',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ù',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ù',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ù',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ù',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ù',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ù',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ù',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ù',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ù',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ù',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ù',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ù',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ø',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ø',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ù',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ù',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ú',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ú',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ú',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ú',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ú',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ú',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': 'Ú',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': 'Ú',
- 'post': ''
- }
- }
- }
- ]
+ 'characters': generateSpecialChars( [ "\u061b",
+ "\u061f", "\u0621", "\u0622", "\u0623",
+ "\u0624", "\u0625", "\u0626", "\u0627",
+ "\u0628", "\u0629", "\u062a", "\u062b",
+ "\u062c", "\u062d", "\u062e", "\u062f",
+ "\u0630", "\u0631", "\u0632", "\u0633",
+ "\u0634", "\u0635", "\u0636", "\u0637",
+ "\u0638", "\u0639", "\u063a", "\u0641",
+ "\u0642", "\u0643", "\u0644", "\u0645",
+ "\u0646", "\u0647", "\u0648", "\u0649",
+ "\u064a", "\u060c", "\u067e", "\u0686",
+ "\u0698", "\u06af", "\u06ad" ] )
},
'hebrew': {
'labelMsg':
'edittoolbar-characters-page-hebrew',
@@ -8220,360 +626,15 @@
'attributes': {
'class': 'rtl'
},
- 'characters': [
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- },
- {
- 'type': 'link',
- 'label': '×',
- 'action': {
- 'type': 'encapsulate',
- 'options': {
- 'pre': '×',
- 'post': ''
- }
- }
- }
- ]
+ 'characters': generateSpecialChars( [ "\u05d0",
+ "\u05d1", "\u05d2", "\u05d3", "\u05d4",
+ "\u05d5", "\u05d6", "\u05d7", "\u05d8",
+ "\u05d9", "\u05da", "\u05db", "\u05dc",
+ "\u05dd", "\u05de", "\u05df", "\u05e0",
+ "\u05e1", "\u05e2", "\u05e3", "\u05e4",
+ "\u05e5", "\u05e6", "\u05e7", "\u05e8",
+ "\u05e9", "\u05ea", "\u05f3", "\u05f4",
+ "\u05f0", "\u05f1", "\u05f2" ] )
}
}
},



_______________________________________________
MediaWiki-CVS mailing list
MediaWiki-CVS@xxxxxxxxxxxxxxxxxxx
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs
<Prev in Thread] Current Thread [Next in Thread>
Google Custom Search

News | Mail Home | sitemap | FAQ | advertise