1 /* 2 Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 For licensing, see LICENSE.html or http://ckeditor.com/license 4 */ 5 6 CKEDITOR.plugins.setLang( 'specialchar', 'en', 7 { 8 euro: 'Euro sign', 9 lsquo: 'Left single quotation mark', 10 rsquo: 'Right single quotation mark', 11 ldquo: 'Left double quotation mark', 12 rdquo: 'Right double quotation mark', 13 ndash: 'En dash', 14 mdash: 'Em dash', 15 iexcl: 'Inverted exclamation mark', 16 cent: 'Cent sign', 17 pound: 'Pound sign', 18 curren: 'Currency sign', 19 yen: 'Yen sign', 20 brvbar: 'Broken bar', 21 sect: 'Section sign', 22 uml: 'Diaeresis', 23 copy: 'Copyright sign', 24 ordf: 'Feminine ordinal indicator', 25 laquo: 'Left-pointing double angle quotation mark', 26 not: 'Not sign', 27 reg: 'Registered sign', 28 macr: 'Macron', 29 deg: 'Degree sign', 30 sup2: 'Superscript two', 31 sup3: 'Superscript three', 32 acute: 'Acute accent', 33 micro: 'Micro sign', 34 para: 'Pilcrow sign', 35 middot: 'Middle dot', 36 cedil: 'Cedilla', 37 sup1: 'Superscript one', 38 ordm: 'Masculine ordinal indicator', 39 raquo: 'Right-pointing double angle quotation mark', 40 frac14: 'Vulgar fraction one quarter', 41 frac12: 'Vulgar fraction one half', 42 frac34: 'Vulgar fraction three quarters', 43 iquest: 'Inverted question mark', 44 Agrave: 'Latin capital letter A with grave accent', 45 Aacute: 'Latin capital letter A with acute accent', 46 Acirc: 'Latin capital letter A with circumflex', 47 Atilde: 'Latin capital letter A with tilde', 48 Auml: 'Latin capital letter A with diaeresis', 49 Aring: 'Latin capital letter A with ring above', 50 AElig: 'Latin Capital letter Æ', 51 Ccedil: 'Latin capital letter C with cedilla', 52 Egrave: 'Latin capital letter E with grave accent', 53 Eacute: 'Latin capital letter E with acute accent', 54 Ecirc: 'Latin capital letter E with circumflex', 55 Euml: 'Latin capital letter E with diaeresis', 56 Igrave: 'Latin capital letter I with grave accent', 57 Iacute: 'Latin capital letter I with acute accent', 58 Icirc: 'Latin capital letter I with circumflex', 59 Iuml: 'Latin capital letter I with diaeresis', 60 ETH: 'Latin capital letter Eth', 61 Ntilde: 'Latin capital letter N with tilde', 62 Ograve: 'Latin capital letter O with grave accent', 63 Oacute: 'Latin capital letter O with acute accent', 64 Ocirc: 'Latin capital letter O with circumflex', 65 Otilde: 'Latin capital letter O with tilde', 66 Ouml: 'Latin capital letter O with diaeresis', 67 times: 'Multiplication sign', 68 Oslash: 'Latin capital letter O with stroke', 69 Ugrave: 'Latin capital letter U with grave accent', 70 Uacute: 'Latin capital letter U with acute accent', 71 Ucirc: 'Latin capital letter U with circumflex', 72 Uuml: 'Latin capital letter U with diaeresis', 73 Yacute: 'Latin capital letter Y with acute accent', 74 THORN: 'Latin capital letter Thorn', 75 szlig: 'Latin small letter sharp s', 76 agrave: 'Latin small letter a with grave accent', 77 aacute: 'Latin small letter a with acute accent', 78 acirc: 'Latin small letter a with circumflex', 79 atilde: 'Latin small letter a with tilde', 80 auml: 'Latin small letter a with diaeresis', 81 aring: 'Latin small letter a with ring above', 82 aelig: 'Latin small letter æ', 83 ccedil: 'Latin small letter c with cedilla', 84 egrave: 'Latin small letter e with grave accent', 85 eacute: 'Latin small letter e with acute accent', 86 ecirc: 'Latin small letter e with circumflex', 87 euml: 'Latin small letter e with diaeresis', 88 igrave: 'Latin small letter i with grave accent', 89 iacute: 'Latin small letter i with acute accent', 90 icirc: 'Latin small letter i with circumflex', 91 iuml: 'Latin small letter i with diaeresis', 92 eth: 'Latin small letter eth', 93 ntilde: 'Latin small letter n with tilde', 94 ograve: 'Latin small letter o with grave accent', 95 oacute: 'Latin small letter o with acute accent', 96 ocirc: 'Latin small letter o with circumflex', 97 otilde: 'Latin small letter o with tilde', 98 ouml: 'Latin small letter o with diaeresis', 99 divide: 'Division sign', 100 oslash: 'Latin small letter o with stroke', 101 ugrave: 'Latin small letter u with grave accent', 102 uacute: 'Latin small letter u with acute accent', 103 ucirc: 'Latin small letter u with circumflex', 104 uuml: 'Latin small letter u with diaeresis', 105 yacute: 'Latin small letter y with acute accent', 106 thorn: 'Latin small letter thorn', 107 yuml: 'Latin small letter y with diaeresis', 108 OElig: 'Latin capital ligature OE', 109 oelig: 'Latin small ligature oe', 110 '372': 'Latin capital letter W with circumflex', 111 '374': 'Latin capital letter Y with circumflex', 112 '373': 'Latin small letter w with circumflex', 113 '375': 'Latin small letter y with circumflex', 114 sbquo: 'Single low-9 quotation mark', 115 '8219': 'Single high-reversed-9 quotation mark', 116 bdquo: 'Double low-9 quotation mark', 117 hellip: 'Horizontal ellipsis', 118 trade: 'Trade mark sign', 119 '9658': 'Black right-pointing pointer', 120 bull: 'Bullet', 121 rarr: 'Rightwards arrow', 122 rArr: 'Rightwards double arrow', 123 hArr: 'Left right double arrow', 124 diams: 'Black diamond suit', 125 asymp: 'Almost equal to' 126 }); 127