summaryrefslogtreecommitdiff
path: root/js/dojo/dojox/editor/plugins/nls/da
diff options
context:
space:
mode:
authorTristan Zur <tzur@web.web.ccwn.org>2014-03-27 22:27:47 +0100
committerTristan Zur <tzur@web.web.ccwn.org>2014-03-27 22:27:47 +0100
commitb62676ca5d3d6f6ba3f019ea3f99722e165a98d8 (patch)
tree86722cb80f07d4569f90088eeaea2fc2f6e2ef94 /js/dojo/dojox/editor/plugins/nls/da
Initial commit of intern.ccwn.org contentsHEADmaster
Diffstat (limited to 'js/dojo/dojox/editor/plugins/nls/da')
-rw-r--r--js/dojo/dojox/editor/plugins/nls/da/AutoSave.js19
-rw-r--r--js/dojo/dojox/editor/plugins/nls/da/Blockquote.js9
-rw-r--r--js/dojo/dojox/editor/plugins/nls/da/Breadcrumb.js15
-rw-r--r--js/dojo/dojox/editor/plugins/nls/da/CollapsibleToolbar.js10
-rw-r--r--js/dojo/dojox/editor/plugins/nls/da/FindReplace.js27
-rw-r--r--js/dojo/dojox/editor/plugins/nls/da/InsertAnchor.js14
-rw-r--r--js/dojo/dojox/editor/plugins/nls/da/InsertEntity.js9
-rw-r--r--js/dojo/dojox/editor/plugins/nls/da/LocalImage.js16
-rw-r--r--js/dojo/dojox/editor/plugins/nls/da/PageBreak.js9
-rw-r--r--js/dojo/dojox/editor/plugins/nls/da/PasteFromWord.js12
-rw-r--r--js/dojo/dojox/editor/plugins/nls/da/Preview.js9
-rw-r--r--js/dojo/dojox/editor/plugins/nls/da/SafePaste.js6
-rw-r--r--js/dojo/dojox/editor/plugins/nls/da/Save.js9
-rw-r--r--js/dojo/dojox/editor/plugins/nls/da/ShowBlockNodes.js9
-rw-r--r--js/dojo/dojox/editor/plugins/nls/da/Smiley.js28
-rw-r--r--js/dojo/dojox/editor/plugins/nls/da/SpellCheck.js22
-rw-r--r--js/dojo/dojox/editor/plugins/nls/da/TableDialog.js35
-rw-r--r--js/dojo/dojox/editor/plugins/nls/da/TextColor.js10
-rw-r--r--js/dojo/dojox/editor/plugins/nls/da/latinEntities.js262
19 files changed, 530 insertions, 0 deletions
diff --git a/js/dojo/dojox/editor/plugins/nls/da/AutoSave.js b/js/dojo/dojox/editor/plugins/nls/da/AutoSave.js
new file mode 100644
index 0000000..bf3fef1
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/da/AutoSave.js
@@ -0,0 +1,19 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/da/AutoSave", //begin v1.x content
+({
+ "saveLabel": "Gem",
+ "saveSettingLabelOn": "Angiv interval for automatisk lagring...",
+ "saveSettingLabelOff": "Deaktivér automatisk lagring",
+ "saveSettingdialogTitle": "Gem automatisk",
+ "saveSettingdialogDescription": "Angiv interval for automatisk lagring",
+ "saveSettingdialogParamName": "Interval for automatisk lagring",
+ "saveSettingdialogParamLabel": "min.",
+ "saveSettingdialogButtonOk": "Angiv interval",
+ "saveSettingdialogButtonCancel": "Annullér",
+ "saveMessageSuccess": "Gemt i ${0}",
+ "saveMessageFail": "Ikke gemt i ${0}"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/da/Blockquote.js b/js/dojo/dojox/editor/plugins/nls/da/Blockquote.js
new file mode 100644
index 0000000..241d926
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/da/Blockquote.js
@@ -0,0 +1,9 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/da/Blockquote", //begin v1.x content
+({
+ "blockquote": "Citat"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/da/Breadcrumb.js b/js/dojo/dojox/editor/plugins/nls/da/Breadcrumb.js
new file mode 100644
index 0000000..ff27536
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/da/Breadcrumb.js
@@ -0,0 +1,15 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/da/Breadcrumb", //begin v1.x content
+({
+ "nodeActions": "${nodeName} - handlinger",
+ "selectContents": "Vælg indhold",
+ "selectElement": "Vælg element",
+ "deleteElement": "Slet element",
+ "deleteContents": "Slet indhold",
+ "moveStart": "Flyt markør til start",
+ "moveEnd": "Flyt markør til slut"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/da/CollapsibleToolbar.js b/js/dojo/dojox/editor/plugins/nls/da/CollapsibleToolbar.js
new file mode 100644
index 0000000..14bee4a
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/da/CollapsibleToolbar.js
@@ -0,0 +1,10 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/da/CollapsibleToolbar", //begin v1.x content
+({
+ "collapse": "Skjul editorværktøjslinje",
+ "expand": "Udvid editorværktøjslinje"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/da/FindReplace.js b/js/dojo/dojox/editor/plugins/nls/da/FindReplace.js
new file mode 100644
index 0000000..8c83c9a
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/da/FindReplace.js
@@ -0,0 +1,27 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/da/FindReplace", //begin v1.x content
+({
+ "findLabel": "Søg efter:",
+ "findTooltip": "Indtast tekst, der skal søges efter",
+ "replaceLabel": "Erstat med:",
+ "replaceTooltip": "Indtast tekst, der skal erstattes med",
+ "findReplace": "Søg og erstat",
+ "matchCase": "Store/små bogstaver",
+ "matchCaseTooltip": "Store/små bogstaver",
+ "backwards": "Tilbage",
+ "backwardsTooltip": "Søg baglæns efter tekst",
+ "replaceAllButton": "Erstat alle",
+ "replaceAllButtonTooltip": "Erstat alle forekomster i teksten",
+ "findButton": "Søg",
+ "findButtonTooltip": "Find teksten",
+ "replaceButton": "Erstat",
+ "replaceButtonTooltip": "Erstat teksten",
+ "replaceDialogText": "Erstattet ${0} forekomster.",
+ "eofDialogText": "Sidste forekomst ${0}",
+ "eofDialogTextFind": "fundet",
+ "eofDialogTextReplace": "erstattet"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/da/InsertAnchor.js b/js/dojo/dojox/editor/plugins/nls/da/InsertAnchor.js
new file mode 100644
index 0000000..1dff07e
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/da/InsertAnchor.js
@@ -0,0 +1,14 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/da/InsertAnchor", //begin v1.x content
+({
+ insertAnchor: "Indsæt anker",
+ title: "Ankeregenskaber",
+ anchor: "Navn:",
+ text: "Beskrivelse:",
+ set: "Definér",
+ cancel: "Annullér"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/da/InsertEntity.js b/js/dojo/dojox/editor/plugins/nls/da/InsertEntity.js
new file mode 100644
index 0000000..7a75e70
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/da/InsertEntity.js
@@ -0,0 +1,9 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/da/InsertEntity", //begin v1.x content
+({
+ insertEntity: "Indsæt symbol"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/da/LocalImage.js b/js/dojo/dojox/editor/plugins/nls/da/LocalImage.js
new file mode 100644
index 0000000..84b2382
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/da/LocalImage.js
@@ -0,0 +1,16 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/da/LocalImage", //begin v1.x content
+({
+ insertImageTitle: "Indsæt billede",
+ url: "Billede",
+ browse: "Gennemse...",
+ text: "Beskrivelse",
+ set: "Indsæt",
+ invalidMessage: "Ugyldig billedfiltype",
+ prePopuTextUrl: "Angiv en billed-URL",
+ prePopuTextBrowse: " eller søg efter en lokal fil."
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/da/PageBreak.js b/js/dojo/dojox/editor/plugins/nls/da/PageBreak.js
new file mode 100644
index 0000000..aaaf969
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/da/PageBreak.js
@@ -0,0 +1,9 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/da/PageBreak", //begin v1.x content
+({
+ "pageBreak": "Sideskift"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/da/PasteFromWord.js b/js/dojo/dojox/editor/plugins/nls/da/PasteFromWord.js
new file mode 100644
index 0000000..a734083
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/da/PasteFromWord.js
@@ -0,0 +1,12 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/da/PasteFromWord", //begin v1.x content
+({
+ "pasteFromWord": "Sæt ind fra Word",
+ "paste": "Sæt ind",
+ "cancel": "Annullér",
+ "instructions": "Indsæt indholdet fra Word i tekstfeltet nedenfor. Klik på knappen Sæt ind, når du er tilfreds med indholdet. Klik på knappen Annullér for at annullere indsættelse af tekst."
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/da/Preview.js b/js/dojo/dojox/editor/plugins/nls/da/Preview.js
new file mode 100644
index 0000000..ae3ddc4
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/da/Preview.js
@@ -0,0 +1,9 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/da/Preview", //begin v1.x content
+({
+ "preview": "Eksempel"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/da/SafePaste.js b/js/dojo/dojox/editor/plugins/nls/da/SafePaste.js
new file mode 100644
index 0000000..28e4a56
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/da/SafePaste.js
@@ -0,0 +1,6 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/da/SafePaste", ({
+ "instructions": "Direkte indsættelse er deaktiveret. Indsæt indholdet i denne dialog ved hjælp af browserens standardtaster eller menupunkter til indsættelse. Klik på knappen Indsæt, når du er tilfreds med indholdet. Tryk på knappen Annullér for at fortryde indsættelsen."
+})
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/da/Save.js b/js/dojo/dojox/editor/plugins/nls/da/Save.js
new file mode 100644
index 0000000..899d8be
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/da/Save.js
@@ -0,0 +1,9 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/da/Save", //begin v1.x content
+({
+ "save": "Gem"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/da/ShowBlockNodes.js b/js/dojo/dojox/editor/plugins/nls/da/ShowBlockNodes.js
new file mode 100644
index 0000000..e1ac31f
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/da/ShowBlockNodes.js
@@ -0,0 +1,9 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/da/ShowBlockNodes", //begin v1.x content
+({
+ "showBlockNodes": "Vis HTML-blokelementer"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/da/Smiley.js b/js/dojo/dojox/editor/plugins/nls/da/Smiley.js
new file mode 100644
index 0000000..a2da72d
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/da/Smiley.js
@@ -0,0 +1,28 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/da/Smiley", //begin v1.x content
+({
+ smiley: "Indsæt humørikon",
+ emoticonSmile: "smil",
+ emoticonLaughing: "ler",
+ emoticonWink: "blink",
+ emoticonGrin: "grin",
+ emoticonCool: "sej",
+ emoticonAngry: "vred",
+ emoticonHalf: "halv",
+ emoticonEyebrow: "øjenbryn",
+ emoticonFrown: "rynker panden",
+ emoticonShy: "genert",
+ emoticonGoofy: "skør",
+ emoticonOops: "ups",
+ emoticonTongue: "tungen ud",
+ emoticonIdea: "idé",
+ emoticonYes: "ja",
+ emoticonNo: "nej",
+ emoticonAngel: "engel",
+ emoticonCrying: "græder",
+ emoticonHappy: "glad"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/da/SpellCheck.js b/js/dojo/dojox/editor/plugins/nls/da/SpellCheck.js
new file mode 100644
index 0000000..7737417
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/da/SpellCheck.js
@@ -0,0 +1,22 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/da/SpellCheck", //begin v1.x content
+({
+ widgetLabel: "Bundtvis stavekontrol",
+ unfound: "Ikke fundet",
+ skip: "Spring over",
+ skipAll: "Spring alle over",
+ toDic: "Tilføj til ordbog",
+ suggestions: "Forslag",
+ replace: "Erstat",
+ replaceWith: "Erstat med",
+ replaceAll: "Erstat alle",
+ cancel: "Annullér",
+ msg: "Ingen stavefejl fundet",
+ iSkip: "Spring dette over",
+ iSkipAll: "Spring alle disse over",
+ iMsg: "Ingen forslag til stavning"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/da/TableDialog.js b/js/dojo/dojox/editor/plugins/nls/da/TableDialog.js
new file mode 100644
index 0000000..9b91de0
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/da/TableDialog.js
@@ -0,0 +1,35 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/da/TableDialog", //begin v1.x content
+({
+ insertTableTitle: "Indsæt tabel",
+ modifyTableTitle: "Revidér tabel",
+ rows: "Rækker:",
+ columns: "Kolonner:",
+ align: "Justér:",
+ cellPadding: "Cellemargen:",
+ cellSpacing: "Celleafstand:",
+ tableWidth: "Tabelbredde:",
+ backgroundColor: "Baggrundsfarve:",
+ borderColor: "Kantfarve:",
+ borderThickness: "Kanttykkelse",
+ percent: "procent",
+ pixels: "pixel",
+ "default": "standard",
+ left: "venstre",
+ center: "centreret",
+ right: "højre",
+ buttonSet: "Definér", // translated elsewhere?
+ buttonInsert: "Indsæt",
+ buttonCancel: "Annullér",
+
+ selectTableLabel: "Markér tabel",
+ insertTableRowBeforeLabel: "Tilføj række før",
+ insertTableRowAfterLabel: "Tilføj række efter",
+ insertTableColumnBeforeLabel: "Tilføj kolonne før",
+ insertTableColumnAfterLabel: "Tilføj kolonne efter",
+ deleteTableRowLabel: "Slet række",
+ deleteTableColumnLabel: "Slet kolonne"
+})
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/da/TextColor.js b/js/dojo/dojox/editor/plugins/nls/da/TextColor.js
new file mode 100644
index 0000000..c006f70
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/da/TextColor.js
@@ -0,0 +1,10 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/da/TextColor", //begin v1.x content
+({
+ "setButtonText": "Definér",
+ "cancelButtonText": "Annullér"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/da/latinEntities.js b/js/dojo/dojox/editor/plugins/nls/da/latinEntities.js
new file mode 100644
index 0000000..b824831
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/da/latinEntities.js
@@ -0,0 +1,262 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/da/latinEntities", //begin v1.x content
+({
+ /* These are already handled in the default RTE
+ amp:"ampersand",lt:"less-than sign",
+ gt:"greater-than sign",
+ nbsp:"no-break space\nnon-breaking space",
+ quot:"quote",
+ */
+ iexcl:"inverted exclamation mark",
+ cent:"cent sign",
+ pound:"pound sign",
+ curren:"currency sign",
+ yen:"yen sign\nyuan sign",
+ brvbar:"broken bar\nbroken vertical bar",
+ sect:"section sign",
+ uml:"diaeresis\nspacing diaeresis",
+ copy:"copyright sign",
+ ordf:"feminine ordinal indicator",
+ laquo:"left-pointing double angle quotation mark\nleft pointing guillemet",
+ not:"not sign",
+ shy:"soft hyphen\ndiscretionary hyphen",
+ reg:"registered sign\nregistered trade mark sign",
+ macr:"macron\nspacing macron\noverline\nAPL overbar",
+ deg:"degree sign",
+ plusmn:"plus-minus sign\nplus-or-minus sign",
+ sup2:"superscript two\nsuperscript digit two\nsquared",
+ sup3:"superscript three\nsuperscript digit three\ncubed",
+ acute:"acute accent\nspacing acute",
+ micro:"micro sign",
+ para:"pilcrow sign\nparagraph sign",
+ middot:"middle dot\nGeorgian comma\nGreek middle dot",
+ cedil:"cedilla\nspacing cedilla",
+ sup1:"superscript one\nsuperscript digit one",
+ ordm:"masculine ordinal indicator",
+ raquo:"right-pointing double angle quotation mark\nright pointing guillemet",
+ frac14:"vulgar fraction one quarter\nfraction one quarter",
+ frac12:"vulgar fraction one half\nfraction one half",
+ frac34:"vulgar fraction three quarters\nfraction three quarters",
+ iquest:"inverted question mark\nturned question mark",
+ Agrave:"Latin capital letter A with grave\nLatin capital letter A grave",
+ Aacute:"Latin capital letter A with acute",
+ Acirc:"Latin capital letter A with circumflex",
+ Atilde:"Latin capital letter A with tilde",
+ Auml:"Latin capital letter A with diaeresis",
+ Aring:"Latin capital letter A with ring above\nLatin capital letter A ring",
+ AElig:"Latin capital letter AE\nLatin capital ligature AE",
+ Ccedil:"Latin capital letter C with cedilla",
+ Egrave:"Latin capital letter E with grave",
+ Eacute:"Latin capital letter E with acute",
+ Ecirc:"Latin capital letter E with circumflex",
+ Euml:"Latin capital letter E with diaeresis",
+ Igrave:"Latin capital letter I with grave",
+ Iacute:"Latin capital letter I with acute",
+ Icirc:"Latin capital letter I with circumflex",
+ Iuml:"Latin capital letter I with diaeresis",
+ ETH:"Latin capital letter ETH",
+ Ntilde:"Latin capital letter N with tilde",
+ Ograve:"Latin capital letter O with grave",
+ Oacute:"Latin capital letter O with acute",
+ Ocirc:"Latin capital letter O with circumflex",
+ Otilde:"Latin capital letter O with tilde",
+ Ouml:"Latin capital letter O with diaeresis",
+ times:"multiplication sign",
+ Oslash:"Latin capital letter O with stroke\nLatin capital letter O slash",
+ Ugrave:"Latin capital letter U with grave",
+ Uacute:"Latin capital letter U with acute",
+ Ucirc:"Latin capital letter U with circumflex",
+ Uuml:"Latin capital letter U with diaeresis",
+ Yacute:"Latin capital letter Y with acute",
+ THORN:"Latin capital letter THORN",
+ szlig:"Latin small letter sharp s\ness-zed",
+ agrave:"Latin small letter a with grave\nLatin small letter a grave",
+ aacute:"Latin small letter a with acute",
+ acirc:"Latin small letter a with circumflex",
+ atilde:"Latin small letter a with tilde",
+ auml:"Latin small letter a with diaeresis",
+ aring:"Latin small letter a with ring above\nLatin small letter a ring",
+ aelig:"Latin small letter ae\nLatin small ligature ae",
+ ccedil:"Latin small letter c with cedilla",
+ egrave:"Latin small letter e with grave",
+ eacute:"Latin small letter e with acute",
+ ecirc:"Latin small letter e with circumflex",
+ euml:"Latin small letter e with diaeresis",
+ igrave:"Latin small letter i with grave",
+ iacute:"Latin small letter i with acute",
+ icirc:"Latin small letter i with circumflex",
+ iuml:"Latin small letter i with diaeresis",
+ eth:"Latin small letter eth",
+ ntilde:"Latin small letter n with tilde",
+ ograve:"Latin small letter o with grave",
+ oacute:"Latin small letter o with acute",
+ ocirc:"Latin small letter o with circumflex",
+ otilde:"Latin small letter o with tilde",
+ ouml:"Latin small letter o with diaeresis",
+ divide:"division sign",
+ oslash:"Latin small letter o with stroke\nLatin small letter o slash",
+ ugrave:"Latin small letter u with grave",
+ uacute:"Latin small letter u with acute",
+ ucirc:"Latin small letter u with circumflex",
+ uuml:"Latin small letter u with diaeresis",
+ yacute:"Latin small letter y with acute",
+ thorn:"Latin small letter thorn",
+ yuml:"Latin small letter y with diaeresis",
+
+// Greek Characters and Symbols
+ fnof:"Latin small f with hook\nfunction\nflorin",
+ Alpha:"Greek capital letter alpha",
+ Beta:"Greek capital letter beta",
+ Gamma:"Greek capital letter gamma",
+ Delta:"Greek capital letter delta",
+ Epsilon:"Greek capital letter epsilon",
+ Zeta:"Greek capital letter zeta",
+ Eta:"Greek capital letter eta",
+ Theta:"Greek capital letter theta",
+ Iota:"Greek capital letter iota",
+ Kappa:"Greek capital letter kappa",
+ Lambda:"Greek capital letter lambda",
+ Mu:"Greek capital letter mu",
+ Nu:"Greek capital letter nu",
+ Xi:"Greek capital letter xi",
+ Omicron:"Greek capital letter omicron",
+ Pi:"Greek capital letter pi",
+ Rho:"Greek capital letter rho",
+ Sigma:"Greek capital letter sigma",
+ Tau:"Greek capital letter tau",
+ Upsilon:"Greek capital letter upsilon",
+ Phi:"Greek capital letter phi",
+ Chi:"Greek capital letter chi",
+ Psi:"Greek capital letter psi",
+ Omega:"Greek capital letter omega",
+ alpha:"Greek small letter alpha",
+ beta:"Greek small letter beta",
+ gamma:"Greek small letter gamma",
+ delta:"Greek small letter delta",
+ epsilon:"Greek small letter epsilon",
+ zeta:"Greek small letter zeta",
+ eta:"Greek small letter eta",
+ theta:"Greek small letter theta",
+ iota:"Greek small letter iota",
+ kappa:"Greek small letter kappa",
+ lambda:"Greek small letter lambda",
+ mu:"Greek small letter mu",
+ nu:"Greek small letter nu",
+ xi:"Greek small letter xi",
+ omicron:"Greek small letter omicron",
+ pi:"Greek small letter pi",
+ rho:"Greek small letter rho",
+ sigmaf:"Greek small letter final sigma",
+ sigma:"Greek small letter sigma",
+ tau:"Greek small letter tau",
+ upsilon:"Greek small letter upsilon",
+ phi:"Greek small letter phi",
+ chi:"Greek small letter chi",
+ psi:"Greek small letter psi",
+ omega:"Greek small letter omega",
+ thetasym:"Greek small letter theta symbol",
+ upsih:"Greek upsilon with hook symbol",
+ piv:"Greek pi symbol",
+ bull:"bullet\nblack small circle",
+ hellip:"horizontal ellipsis\nthree dot leader",
+ prime:"prime\nminutes\nfeet",
+ Prime:"double prime\nseconds\ninches",
+ oline:"overline\nspacing overscore",
+ frasl:"fraction slash",
+ weierp:"script capital P\npower set\nWeierstrass p",
+ image:"blackletter capital I\nimaginary part",
+ real:"blackletter capital R\nreal part symbol",
+ trade:"trade mark sign",
+ alefsym:"alef symbol\nfirst transfinite cardinal",
+ larr:"leftwards arrow",
+ uarr:"upwards arrow",
+ rarr:"rightwards arrow",
+ darr:"downwards arrow",
+ harr:"left right arrow",
+ crarr:"downwards arrow with corner leftwards\ncarriage return",
+ lArr:"leftwards double arrow",
+ uArr:"upwards double arrow",
+ rArr:"rightwards double arrow",
+ dArr:"downwards double arrow",
+ hArr:"left right double arrow",
+ forall:"for all",
+ part:"partial differential",
+ exist:"there exists",
+ empty:"empty set\nnull set\ndiameter",
+ nabla:"nabla\nbackward difference",
+ isin:"element of",
+ notin:"not an element of",
+ ni:"contains as member",
+ prod:"n-ary product\nproduct sign",
+ sum:"n-ary sumation",
+ minus:"minus sign",
+ lowast:"asterisk operator",
+ radic:"square root\nradical sign",
+ prop:"proportional to",
+ infin:"infinity",
+ ang:"angle",
+ and:"logical and\nwedge",
+ or:"logical or\nvee",
+ cap:"intersection\ncap",
+ cup:"union\ncup","int":"integral",
+ there4:"therefore",
+ sim:"tilde operator\nvaries with\nsimilar to",
+ cong:"approximately equal to",
+ asymp:"almost equal to\nasymptotic to",
+ ne:"not equal to",
+ equiv:"identical to",
+ le:"less-than or equal to",
+ ge:"greater-than or equal to",
+ sub:"subset of",
+ sup:"superset of",
+ nsub:"not a subset of",
+ sube:"subset of or equal to",
+ supe:"superset of or equal to",
+ oplus:"circled plus\ndirect sum",
+ otimes:"circled times\nvector product",
+ perp:"up tack\northogonal to\nperpendicular",
+ sdot:"dot operator",
+ lceil:"left ceiling\nAPL upstile",
+ rceil:"right ceiling",
+ lfloor:"left floor\nAPL downstile",
+ rfloor:"right floor",
+ lang:"left-pointing angle bracket",
+ rang:"right-pointing angle bracket",
+ loz:"lozenge",
+ spades:"black spade suit",
+ clubs:"black club suit\nshamrock",
+ hearts:"black heart suit\nvalentine",
+ diams:"black diamond suit",
+ OElig:"Latin capital ligature OE",
+ oelig:"Latin small ligature oe",
+ Scaron:"Latin capital letter S with caron",
+ scaron:"Latin small letter s with caron",
+ Yuml:"Latin capital letter Y with diaeresis",
+ circ:"modifier letter circumflex accent",
+ tilde:"small tilde",
+ ensp:"en space",
+ emsp:"em space",
+ thinsp:"thin space",
+ zwnj:"zero width non-joiner",
+ zwj:"zero width joiner",
+ lrm:"left-to-right mark",
+ rlm:"right-to-left mark",
+ ndash:"en dash",
+ mdash:"em dash",
+ lsquo:"left single quotation mark",
+ rsquo:"right single quotation mark",
+ sbquo:"single low-9 quotation mark",
+ ldquo:"left double quotation mark",
+ rdquo:"right double quotation mark",
+ bdquo:"double low-9 quotation mark",
+ dagger:"dagger",
+ Dagger:"double dagger",
+ permil:"per mille sign",
+ lsaquo:"single left-pointing angle quotation mark",
+ rsaquo:"single right-pointing angle quotation mark",
+ euro:"euro sign"
+})
+
+//end v1.x content
+);