-
Notifications
You must be signed in to change notification settings - Fork 0
/
pagedown-i18n-fr.js
71 lines (48 loc) · 2.03 KB
/
pagedown-i18n-fr.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/**!
* Pagedown-i18n
* Repo: github.com/bfontaine/pagedown-i18n
* License: MIT
*
* Language: French
* Author: Baptiste Fontaine
**/
(function() {
var _ME = Markdown.Editor;
Markdown.Editor = function (markdownConverter, idPostfix, options) {
var strings, s;
options = options || {};
strings = options.strings || {};
options.strings = {
bold: "Gras <strong> Ctrl+B",
boldexample: "texte en gras",
italic: "Italique <em> Ctrl+I",
italicexample: "texte en italique",
link: "Hyperlien <a> Ctrl+L",
linkdescription: "entrez la description du lien ici",
linkdialog: "<p><b>Insérer un hyperlien</b></p><p>http://exemple.fr/ \"titre optionnel\"</p>",
quote: "Citation <blockquote> Ctrl+Q",
quoteexample: "Citation",
code: "Code <pre><code> Ctrl+K",
codeexample: "entrez le code ici",
image: "Image <img> Ctrl+G",
imagedescription: "entrez la description de l'image ici",
imagedialog: "<p><b>Insérer une image</b></p><p>http://exemple.fr/images/diagram.jpg \"titre optionnel\"<br><br>Besoin d'<a href='http://www.google.fr/search?q=hébergement-images-gratuit' target='_blank'>hébergement d'images gratuit</a>?</p>",
olist: "Liste numérotée <ol> Ctrl+O",
ulist: "Liste à points <ul> Ctrl+U",
litem: "Élément de liste",
heading: "Titre <h1>/<h2> Ctrl+H",
headingexample: "Titre",
hr: "Ligne horizontale <hr> Ctrl+R",
undo: "Annuler - Ctrl+Z",
redo: "Refaire - Ctrl+Y",
redomac: "Refaire - Ctrl+Shift+Z",
help: "Aide pour l'édition en Markdown"
};
for ( s in strings ) {
if ( strings.hasOwnProperty( s ) ) {
options.strings[ s ] = strings[ s ];
}
}
return _ME.call( this, markdownConverter, idPostfix, options );
};
})();