summaryrefslogtreecommitdiff
path: root/js/dojo/dojox/editor/plugins/nls/fr
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/fr
Initial commit of intern.ccwn.org contentsHEADmaster
Diffstat (limited to 'js/dojo/dojox/editor/plugins/nls/fr')
-rw-r--r--js/dojo/dojox/editor/plugins/nls/fr/AutoSave.js19
-rw-r--r--js/dojo/dojox/editor/plugins/nls/fr/Blockquote.js9
-rw-r--r--js/dojo/dojox/editor/plugins/nls/fr/Breadcrumb.js15
-rw-r--r--js/dojo/dojox/editor/plugins/nls/fr/CollapsibleToolbar.js10
-rw-r--r--js/dojo/dojox/editor/plugins/nls/fr/FindReplace.js26
-rw-r--r--js/dojo/dojox/editor/plugins/nls/fr/InsertAnchor.js14
-rw-r--r--js/dojo/dojox/editor/plugins/nls/fr/InsertEntity.js9
-rw-r--r--js/dojo/dojox/editor/plugins/nls/fr/LocalImage.js16
-rw-r--r--js/dojo/dojox/editor/plugins/nls/fr/PageBreak.js9
-rw-r--r--js/dojo/dojox/editor/plugins/nls/fr/PasteFromWord.js12
-rw-r--r--js/dojo/dojox/editor/plugins/nls/fr/Preview.js9
-rw-r--r--js/dojo/dojox/editor/plugins/nls/fr/SafePaste.js6
-rw-r--r--js/dojo/dojox/editor/plugins/nls/fr/Save.js9
-rw-r--r--js/dojo/dojox/editor/plugins/nls/fr/ShowBlockNodes.js9
-rw-r--r--js/dojo/dojox/editor/plugins/nls/fr/Smiley.js28
-rw-r--r--js/dojo/dojox/editor/plugins/nls/fr/SpellCheck.js22
-rw-r--r--js/dojo/dojox/editor/plugins/nls/fr/TableDialog.js36
-rw-r--r--js/dojo/dojox/editor/plugins/nls/fr/TextColor.js10
-rw-r--r--js/dojo/dojox/editor/plugins/nls/fr/latinEntities.js262
19 files changed, 530 insertions, 0 deletions
diff --git a/js/dojo/dojox/editor/plugins/nls/fr/AutoSave.js b/js/dojo/dojox/editor/plugins/nls/fr/AutoSave.js
new file mode 100644
index 0000000..1fcbd44
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/fr/AutoSave.js
@@ -0,0 +1,19 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/fr/AutoSave", //begin v1.x content
+({
+ "saveLabel": "Enregistrer",
+ "saveSettingLabelOn": "Définir l'intervalle d'enregistrement automatique...",
+ "saveSettingLabelOff": "Désactiver l'enregistrement automatique",
+ "saveSettingdialogTitle": "Enregistrement automatique",
+ "saveSettingdialogDescription": "Spécifiez l'intervalle d'enregistrement automatique",
+ "saveSettingdialogParamName": "Intervalle d'enregistrement automatique",
+ "saveSettingdialogParamLabel": "min",
+ "saveSettingdialogButtonOk": "Définir l'intervalle",
+ "saveSettingdialogButtonCancel": "Annuler",
+ "saveMessageSuccess": "Enregistré à ${0}",
+ "saveMessageFail": "Echec de l'enregistrement à ${0}"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/fr/Blockquote.js b/js/dojo/dojox/editor/plugins/nls/fr/Blockquote.js
new file mode 100644
index 0000000..748d08c
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/fr/Blockquote.js
@@ -0,0 +1,9 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/fr/Blockquote", //begin v1.x content
+({
+ "blockquote": "Bloc de citation"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/fr/Breadcrumb.js b/js/dojo/dojox/editor/plugins/nls/fr/Breadcrumb.js
new file mode 100644
index 0000000..2c3ec4d
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/fr/Breadcrumb.js
@@ -0,0 +1,15 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/fr/Breadcrumb", //begin v1.x content
+({
+ "nodeActions": "Actions ${nodeName}",
+ "selectContents": "Sélection de contenus",
+ "selectElement": "Sélection d'un élément",
+ "deleteElement": "Suppression d'un élément",
+ "deleteContents": "Suppression de contenus",
+ "moveStart": "Déplacer le curseur vers le début",
+ "moveEnd": "Déplacer le curseur vers la fin"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/fr/CollapsibleToolbar.js b/js/dojo/dojox/editor/plugins/nls/fr/CollapsibleToolbar.js
new file mode 100644
index 0000000..df4ec3c
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/fr/CollapsibleToolbar.js
@@ -0,0 +1,10 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/fr/CollapsibleToolbar", //begin v1.x content
+({
+ "collapse": "Réduire la barre d'outils de l'éditeur",
+ "expand": "Développer la barre d'outils de l'éditeur"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/fr/FindReplace.js b/js/dojo/dojox/editor/plugins/nls/fr/FindReplace.js
new file mode 100644
index 0000000..11c9ca3
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/fr/FindReplace.js
@@ -0,0 +1,26 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/fr/FindReplace", //begin v1.x content
+({
+ "findLabel": "Rechercher :",
+ "findTooltip": "Entrez le texte à rechercher",
+ "replaceLabel": "Remplacer par :",
+ "replaceTooltip": "Entrez le texte de remplacement",
+ "findReplace": "Rechercher et remplacer",
+ "matchCase": "Respecter la casse",
+ "matchCaseTooltip": "Respecter la casse",
+ "backwards": "Vers l'arrière",
+ "backwardsTooltip": "Recherchez le texte vers l'arrière",
+ "replaceAllButton": "Remplacer tout",
+ "replaceAllButtonTooltip": "Remplacez tout le texte",
+ "findButton": "Rechercher",
+ "findButtonTooltip": "Recherchez le texte",
+ "replaceButton": "Remplacer",
+ "replaceButtonTooltip": "Remplacez le texte",
+ "replaceDialogText": "${0} occurrence(s) remplacée(s)",
+ "eofDialogText": "Dernière occurrence ${0}",
+ "eofDialogTextFind": "trouvé",
+ "eofDialogTextReplace": "remplacé"
+})
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/fr/InsertAnchor.js b/js/dojo/dojox/editor/plugins/nls/fr/InsertAnchor.js
new file mode 100644
index 0000000..1424f16
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/fr/InsertAnchor.js
@@ -0,0 +1,14 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/fr/InsertAnchor", //begin v1.x content
+({
+ insertAnchor: "Insérer un point d'ancrage",
+ title: "Propriétés du point d'ancrage",
+ anchor: "Nom :",
+ text: "Description :",
+ set: "Définir",
+ cancel: "Annuler"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/fr/InsertEntity.js b/js/dojo/dojox/editor/plugins/nls/fr/InsertEntity.js
new file mode 100644
index 0000000..665971d
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/fr/InsertEntity.js
@@ -0,0 +1,9 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/fr/InsertEntity", //begin v1.x content
+({
+ insertEntity: "Insertion d'un symbole"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/fr/LocalImage.js b/js/dojo/dojox/editor/plugins/nls/fr/LocalImage.js
new file mode 100644
index 0000000..0960c17
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/fr/LocalImage.js
@@ -0,0 +1,16 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/fr/LocalImage", //begin v1.x content
+({
+ insertImageTitle: "Insérer une image",
+ url: "Image",
+ browse: "Parcourir...",
+ text: "Description",
+ set: "Insérer",
+ invalidMessage: "Type de fichier image non valide",
+ prePopuTextUrl: "Entrez une URL d'image",
+ prePopuTextBrowse: " ou sélectionnez un fichier local."
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/fr/PageBreak.js b/js/dojo/dojox/editor/plugins/nls/fr/PageBreak.js
new file mode 100644
index 0000000..3101ca9
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/fr/PageBreak.js
@@ -0,0 +1,9 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/fr/PageBreak", //begin v1.x content
+({
+ "pageBreak": "Saut de page"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/fr/PasteFromWord.js b/js/dojo/dojox/editor/plugins/nls/fr/PasteFromWord.js
new file mode 100644
index 0000000..2927a23
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/fr/PasteFromWord.js
@@ -0,0 +1,12 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/fr/PasteFromWord", //begin v1.x content
+({
+ "pasteFromWord": "Coller depuis Word",
+ "paste": "Coller",
+ "cancel": "Annuler",
+ "instructions": "Collez le contenu Word dans la zone de texte ci-dessous. Quand le contenu à insérer vous convient, appuyez sur le bouton Coller. Pour annuler l'insertion du texte, utilisez le bouton Annuler."
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/fr/Preview.js b/js/dojo/dojox/editor/plugins/nls/fr/Preview.js
new file mode 100644
index 0000000..86a1dfd
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/fr/Preview.js
@@ -0,0 +1,9 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/fr/Preview", //begin v1.x content
+({
+ "preview": "Aperçu"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/fr/SafePaste.js b/js/dojo/dojox/editor/plugins/nls/fr/SafePaste.js
new file mode 100644
index 0000000..1a35ce0
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/fr/SafePaste.js
@@ -0,0 +1,6 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/fr/SafePaste", ({
+ "instructions": "La fonction directe Coller est désactivée. Collez le contenu dans la boîte de dialogue à l'aide des commandes du clavier de navigateur standard ou de l'option coller dans le menu. Quand le contenu à insérer vous convient, appuyez sur le bouton Coller. Pour annuler l'insertion du contenu, utilisez le bouton Annuler."
+})
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/fr/Save.js b/js/dojo/dojox/editor/plugins/nls/fr/Save.js
new file mode 100644
index 0000000..b6dc844
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/fr/Save.js
@@ -0,0 +1,9 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/fr/Save", //begin v1.x content
+({
+ "save": "Sauvegarder"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/fr/ShowBlockNodes.js b/js/dojo/dojox/editor/plugins/nls/fr/ShowBlockNodes.js
new file mode 100644
index 0000000..7388d8d
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/fr/ShowBlockNodes.js
@@ -0,0 +1,9 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/fr/ShowBlockNodes", //begin v1.x content
+({
+ "showBlockNodes": "Affichage des éléments de bloc HTML"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/fr/Smiley.js b/js/dojo/dojox/editor/plugins/nls/fr/Smiley.js
new file mode 100644
index 0000000..c9b605b
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/fr/Smiley.js
@@ -0,0 +1,28 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/fr/Smiley", //begin v1.x content
+({
+ smiley: "Insérer une émoticône",
+ emoticonSmile: "sourire",
+ emoticonLaughing: "rire",
+ emoticonWink: "clin d'oeil",
+ emoticonGrin: "sourire large",
+ emoticonCool: "calme",
+ emoticonAngry: "colère",
+ emoticonHalf: "demi",
+ emoticonEyebrow: "sourcils",
+ emoticonFrown: "froncement de sourcils",
+ emoticonShy: "timide",
+ emoticonGoofy: "dingo",
+ emoticonOops: "oops",
+ emoticonTongue: "langue",
+ emoticonIdea: "idée",
+ emoticonYes: "oui",
+ emoticonNo: "non",
+ emoticonAngel: "ange",
+ emoticonCrying: "pleurs",
+ emoticonHappy: "sourire"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/fr/SpellCheck.js b/js/dojo/dojox/editor/plugins/nls/fr/SpellCheck.js
new file mode 100644
index 0000000..1b90c97
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/fr/SpellCheck.js
@@ -0,0 +1,22 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/fr/SpellCheck", //begin v1.x content
+({
+ widgetLabel: "Vérification orthographique par lots",
+ unfound: "Introuvable",
+ skip: "Ignorer",
+ skipAll: "Ignorer tout",
+ toDic: "Ajouter au dictionnaire",
+ suggestions: "Suggestions",
+ replace: "Remplacer",
+ replaceWith: "Remplacer par",
+ replaceAll: "Remplacer tout",
+ cancel: "Annuler",
+ msg: "Aucune faute d'orthographe trouvée",
+ iSkip: "Ignorer une fois",
+ iSkipAll: "Ignorer chaque fois",
+ iMsg: "Aucune suggestion orthographique"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/fr/TableDialog.js b/js/dojo/dojox/editor/plugins/nls/fr/TableDialog.js
new file mode 100644
index 0000000..67bd7e5
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/fr/TableDialog.js
@@ -0,0 +1,36 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/fr/TableDialog", //begin v1.x content
+({
+ insertTableTitle: "Insérer une table",
+ modifyTableTitle: "Modifier une table",
+ rows: "Lignes :",
+ columns: "Colonnes :",
+ align: "Aligner :",
+ cellPadding: "Remplissage des cellules :",
+ cellSpacing: "Espacement des cellules :",
+ tableWidth: "Largeur de table :",
+ backgroundColor: "Couleur d'arrière-plan :",
+ borderColor: "Couleur des bordures :",
+ borderThickness: "Epaisseur des bordures",
+ percent: "pourcentage",
+ pixels: "pixels",
+ "default": "par défaut",
+ left: "aligné à gauche",
+ center: "centré",
+ right: "aligné à droite",
+ buttonSet: "Définir", // translated elsewhere?
+ buttonInsert: "Insérer",
+ buttonCancel: "Annuler",
+
+ selectTableLabel: "Sélectionner une table",
+ insertTableRowBeforeLabel: "Ajouter une ligne avant",
+ insertTableRowAfterLabel: "Ajouter une ligne après",
+ insertTableColumnBeforeLabel: "Ajouter une colonne avant",
+ insertTableColumnAfterLabel: "Ajouter une colonne après",
+ deleteTableRowLabel: "Supprimer la ligne",
+ deleteTableColumnLabel: "Supprimer la colonne"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/fr/TextColor.js b/js/dojo/dojox/editor/plugins/nls/fr/TextColor.js
new file mode 100644
index 0000000..7205683
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/fr/TextColor.js
@@ -0,0 +1,10 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/fr/TextColor", //begin v1.x content
+({
+ "setButtonText": "Définir",
+ "cancelButtonText": "Annuler"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/fr/latinEntities.js b/js/dojo/dojox/editor/plugins/nls/fr/latinEntities.js
new file mode 100644
index 0000000..de09107
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/fr/latinEntities.js
@@ -0,0 +1,262 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/fr/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:"point d'exclamation inversé",
+ cent:"signe cent",
+ pound:"signe livre sterling",
+ curren:"signe devise",
+ yen:"signe yen\nsigne yuan",
+ brvbar:"barre interrompue\nbarre verticale interrompue",
+ sect:"signe section",
+ uml:"tréma\ntréma d'espacement",
+ copy:"signe de droit d'auteur",
+ ordf:"indicateur ordinal féminin",
+ laquo:"guillemets fermants",
+ not:"signe non",
+ shy:"trait d'union conditionnel\ntiret conditionnel",
+ reg:"signe enregistré\nmarque commerciale enregistrée",
+ macr:"macron\nmacron d'espacement\nligne supérieure\nbarre supérieure APL",
+ deg:"signe degré",
+ plusmn:"signe plus-moins\nsigne plus-ou-moins",
+ sup2:"exposant deux\npuissance deux\ncarré",
+ sup3:"exposant trois\npuissance trois\ncube",
+ acute:"accent aigu\naccent aigu d'espacement",
+ micro:"signe micro",
+ para:"symbole de paragraphe",
+ middot:"point médian\nvirgule géorgiennea\npoint médian grec",
+ cedil:"cédille\ncédille d'espacement",
+ sup1:"exposant un\npuissance un",
+ ordm:"indicateur ordinal masculin",
+ raquo:"guillemets ouvrants",
+ frac14:"fraction commune un quart\nfraction un quart",
+ frac12:"fraction commune un demi\nfraction un demi",
+ frac34:"fraction commune trois quarts\nfraction trois quarts",
+ iquest:"point d'interrogation inversé\npoint d'interrogation retourné",
+ Agrave:"Latin - A majuscule avec accent grave\nLatin - A majuscule accent grave",
+ Aacute:"Latin - A majuscule avec accent aigu",
+ Acirc:"Latin - A majuscule avec accent circonflexe",
+ Atilde:"Latin - A majuscule avec tilde",
+ Auml:"Latin - A majuscule avec tréma",
+ Aring:"Latin - A majuscule rond en chef\nLatin - A majuscule rond",
+ AElig:"Latin - AE majuscule\nLatin - AE majuscule (ligature)",
+ Ccedil:"Latin - C majuscule avec cédille",
+ Egrave:"Latin - E majuscule avec accent grave",
+ Eacute:"Latin - E majuscule avec accent aigu",
+ Ecirc:"Latin - E majuscule avec accent circonflexe",
+ Euml:"Latin - E majuscule avec tréma",
+ Igrave:"Latin - I majuscule avec accent grave",
+ Iacute:"Latin - I majuscule avec accent aigu",
+ Icirc:"Latin - I majuscule avec accent circonflexe",
+ Iuml:"Latin - I majuscule avec tréma",
+ ETH:"Latin - ETH majuscule",
+ Ntilde:"Latin - N majuscule avec tilde",
+ Ograve:"Latin - O majuscule avec accent grave",
+ Oacute:"Latin - O majuscule avec accent aigu",
+ Ocirc:"Latin - O majuscule avec accent circonflexe",
+ Otilde:"Latin - O majuscule avec tilde",
+ Ouml:"Latin - O majuscule avec tréma",
+ times:"signe multiplication",
+ Oslash:"Latin - O majuscule barré\nLatin - Ensemble vide",
+ Ugrave:"Latin - U majuscule avec accent grave",
+ Uacute:"Latin - U majuscule avec accent aigu",
+ Ucirc:"Latin - U majuscule avec accent circonflexe",
+ Uuml:"Latin - U majuscule avec tréma",
+ Yacute:"Latin - Y majuscule avec accent aigu",
+ THORN:"Latin THORN majuscule",
+ szlig:"Latin - s dur minuscule\nss",
+ agrave:"Latin - a minuscule avec accent grave\nLatin - a minuscule accent grave",
+ aacute:"Latin - a minuscule avec accent aigu",
+ acirc:"Latin - a minuscule avec accent circonflexe",
+ atilde:"Latin - a minuscule avec tilde",
+ auml:"Latin - a minuscule avec tréma",
+ aring:"Latin - a minuscule rond en chef\nLatin - a minuscule rond",
+ aelig:"Latin - AE minuscule\nLatin - AE minuscule (ligature)",
+ ccedil:"Latin - c minuscule avec cédille",
+ egrave:"Latin - e minuscule avec accent grave",
+ eacute:"Latin - e minuscule avec accent aigu",
+ ecirc:"Latin - e minuscule avec accent circonflexe",
+ euml:"Latin - e minuscule avec tréma",
+ igrave:"Latin - i minuscule avec accent grave",
+ iacute:"Latin - i minuscule avec accent aigu",
+ icirc:"Latin - i minuscule avec accent circonflexe",
+ iuml:"Latin - i minuscule avec tréma",
+ eth:"Latin - eth minuscule",
+ ntilde:"Latin - n minuscule avec tilde",
+ ograve:"Latin - o minuscule avec accent grave",
+ oacute:"Latin - o minuscule avec accent aigu",
+ ocirc:"Latin - o minuscule avec accent circonflexe",
+ otilde:"Latin - o minuscule avec tilde",
+ ouml:"Latin - o minuscule avec tréma",
+ divide:"signe division",
+ oslash:"Latin - o minuscule barré\nLatin - Ensemble vide minuscule",
+ ugrave:"Latin - u minuscule avec accent grave",
+ uacute:"Latin - u minuscule avec accent aigu",
+ ucirc:"Latin - u minuscule avec accent circonflexe",
+ uuml:"Latin - u minuscule avec tréma",
+ yacute:"Latin - y minuscule avec accent aigu",
+ thorn:"Latin - thorn minuscule",
+ yuml:"Latin - y minuscule avec tréma",
+
+// Greek Characters and Symbols
+ fnof:"Latin - f minuscule avec crochet\nfonction\nflorin",
+ Alpha:"Grec - alpha majuscule",
+ Beta:"Grec - beta majuscule",
+ Gamma:"Grec - gamma majuscule",
+ Delta:"Grec - delta majuscule",
+ Epsilon:"Grec - epsilon majuscule",
+ Zeta:"Grec - zeta majuscule",
+ Eta:"Grec - eta majuscule",
+ Theta:"Grec - theta majuscule",
+ Iota:"Grec - iota majuscule",
+ Kappa:"Grec - kappa majuscule",
+ Lambda:"Grec - lambda majuscule",
+ Mu:"Grec - mu majuscule",
+ Nu:"Grec - nu majuscule",
+ Xi:"Grec - xi majuscule",
+ Omicron:"Grec - omicron majuscule",
+ Pi:"Grec - pi majuscule",
+ Rho:"Grec - rho majuscule",
+ Sigma:"Grec - sigma majuscule",
+ Tau:"Grec - tau majuscule",
+ Upsilon:"Grec - upsilon majuscule",
+ Phi:"Grec - phi majuscule",
+ Chi:"Grec - chi majuscule",
+ Psi:"Grec - psi majuscule",
+ Omega:"Grec - omega majuscule",
+ alpha:"Grec - alpha minuscule",
+ beta:"Grec - beta minuscule",
+ gamma:"Grec - gamma minuscule",
+ delta:"Grec - delta minuscule",
+ epsilon:"Grec - epsilon minuscule",
+ zeta:"Grec - zeta minuscule",
+ eta:"Grec - eta minuscule",
+ theta:"Grec - theta minuscule",
+ iota:"Grec - iota minuscule",
+ kappa:"Grec - kappa minuscule",
+ lambda:"Grec - lambda minuscule",
+ mu:"Grec - mu minuscule",
+ nu:"Grec - nu minuscule",
+ xi:"Grec - xi minuscule",
+ omicron:"Grec - omicron minuscule",
+ pi:"Grec - pi minuscule",
+ rho:"Grec - rho minuscule",
+ sigmaf:"Grec - sigma final minuscule",
+ sigma:"Grec - sigma minuscule",
+ tau:"Grec - tau minuscule",
+ upsilon:"Grec - upsilon minuscule",
+ phi:"Grec - phi minuscule",
+ chi:"Grec - chi minuscule",
+ psi:"Grec - psi minuscule",
+ omega:"Grec - omega minuscule",
+ thetasym:"Grec - theta minuscule",
+ upsih:"Greek - upsilon avec symbole de crochet",
+ piv:"Greek - symbole pi",
+ bull:"puce\npetit cercle noir",
+ hellip:"points de suspension\ntrois points de conduite",
+ prime:"apostrophe\nminutes\npieds",
+ Prime:"double apostrophe\nsecondes\npouces",
+ oline:"surligné\nbarre supérieure d'espacement",
+ frasl:"barre de fraction",
+ weierp:"P majuscule scripte\nensemble de puissances\nfonction elliptique de Weierstrass",
+ image:"I majuscule noir\npartie imaginaire",
+ real:"R majuscule noir\npartie réelle",
+ trade:"signe de marque commerciale",
+ alefsym:"symbole alef\npremier cardinal transfini",
+ larr:"flèche vers la gauche",
+ uarr:"flèche vers le haut",
+ rarr:"flèche vers la droite",
+ darr:"flèche vers le bas",
+ harr:"flèche vers la gauche et la droite",
+ crarr:"flèche vers le bas avec coin vers la gauche\nretour chariot",
+ lArr:"flèche double vers la gauche",
+ uArr:"flèche double vers le haut",
+ rArr:"flèche double vers la droite",
+ dArr:"flèche double vers le bas",
+ hArr:"flèche double vers la gauche",
+ forall:"pour tous",
+ part:"différentiel partiel",
+ exist:"il existe",
+ empty:"ensemble vide\nensemble null\ndiamètre",
+ nabla:"nabla\ndifférence arrière",
+ isin:"élément de",
+ notin:"non élément de",
+ ni:"contient comme membre",
+ prod:"produit n-aire\nsigne produit",
+ sum:"somme n-aire",
+ minus:"signe moins",
+ lowast:"astérisque",
+ radic:"racine carrée\nsigne radical",
+ prop:"proportionnel à",
+ infin:"infinité",
+ ang:"angle",
+ and:"et logique\nwedge",
+ or:"ou logique\nvee",
+ cap:"intersection\ncap",
+ cup:"union\ncup","int":"intégrale",
+ there4:"donc",
+ sim:"tilde\nvarie en fonction de\nsimilaire à",
+ cong:"approximativement égal à",
+ asymp:"presque égal à\nasymptotique à",
+ ne:"différente de",
+ equiv:"identique à",
+ le:"inférieur ou égal à",
+ ge:"supérieur ou égal à",
+ sub:"sous-ensemble de",
+ sup:"sur-ensemble de",
+ nsub:"non sous-ensemble de",
+ sube:"sous-ensemble de ou égal à",
+ supe:"sur-ensemble de ou égal à",
+ oplus:"plus entouré\nsomme directe",
+ otimes:"signe multiplié entouré\nproduit vectoriel",
+ perp:"orthogonal à\nperpendiculaire",
+ sdot:"point",
+ lceil:"plafond à gauche\nmontant APL",
+ rceil:"plafond à droite",
+ lfloor:"plancher à gauche\ndescendant APL",
+ rfloor:"plancher à droite",
+ lang:"chevron vers la gauche",
+ rang:"chevron vers la droite",
+ loz:"losange",
+ spades:"pic noir",
+ clubs:"trèfle noir",
+ hearts:"coeur noir\nvalentine",
+ diams:"carreau noir",
+ OElig:"Latin - Ligature OE majuscule",
+ oelig:"Latin - Ligature oe minuscule",
+ Scaron:"Latin - S majuscule avec caron",
+ scaron:"Latin - s minuscule avec caron",
+ Yuml:"Latin - Y majuscule avec tréma",
+ circ:"accent circonflexe de lettre modificateur",
+ tilde:"petit tilde",
+ ensp:"espace demi-cadratin",
+ emsp:"espace cadratin",
+ thinsp:"espace fin",
+ zwnj:"antiliant sans chasse",
+ zwj:"liant sans chasse",
+ lrm:"marque de gauche à droite",
+ rlm:"marque de droite à gauche",
+ ndash:"tiret demi-cadratin",
+ mdash:"tiret cadratin",
+ lsquo:"guillemet simple ouvrant",
+ rsquo:"guillemet simple fermant",
+ sbquo:"guillemet simple fermant bas",
+ ldquo:"guillemet double gauche",
+ rdquo:"guillemet double droit",
+ bdquo:"guillemet double fermant bas",
+ dagger:"obèle",
+ Dagger:"double obèle",
+ permil:"signe pour-mille",
+ lsaquo:"guillemet simple orienté vers la gauche",
+ rsaquo:"guillemet simple orienté vers la droite",
+ euro:"signe euro"
+})
+
+//end v1.x content
+);