Project

General

Profile

1
// I18N constants
2
// Author: Jonathan Ernst, <Jonathan.Ernst@NetOxygen.ch>
3

    
4
// FOR TRANSLATORS:
5
//
6
//   1. PLEASE PUT YOUR CONTACT INFO IN THE ABOVE LINE
7
//      (at least a valid email address)
8
//
9
//   2. PLEASE TRY TO USE UTF-8 FOR ENCODING;
10
//      (if this is not possible, please include a comment
11
//       that states what encoding is necessary.)
12

    
13
HTMLArea.I18N = {
14

    
15
	// the following should be the filename without .js extension
16
	// it will be used for automatically load plugin language.
17
	lang: "fr",
18

    
19
	tooltips: {
20
		bold:           "Gras",
21
		italic:         "Italique",
22
		underline:      "Soulign?",
23
		strikethrough:  "Barr?",
24
		subscript:      "Subscript",
25
		superscript:    "Superscript",
26
		justifyleft:    "Align? ? gauche",
27
		justifycenter:  "Centr?",
28
		justifyright:   "Align? ? droite",
29
		justifyfull:    "Justifi?",
30
		orderedlist:    "Num?rotation",
31
		unorderedlist:  "Puces",
32
		outdent:        "Augmenter le retrait",
33
		indent:         "Diminuer le retrait",
34
		forecolor:      "Couleur du texte",
35
		hilitecolor:    "Couleur du fond",
36
		horizontalrule: "Ligne horizontale",
37
		createlink:     "Ins?rer un lien",
38
		insertimage:    "Ins?rer une image",
39
		inserttable:    "Ins?rer un tableau",
40
		htmlmode:       "Passer au code source HTML",
41
		popupeditor:    "Agrandir l'?diteur",
42
		about:          "A propos de cet ?diteur",
43
		showhelp:       "Aide sur l'?diteur",
44
		textindicator:  "Style courant",
45
		undo:           "Annule la derni?re action",
46
		redo:           "Refait la derni?re action",
47
		cut:            "Coupe la s?lection",
48
		copy:           "Copie la s?lection",
49
		paste:          "Colle depuis le presse papiers"
50
	},
51

    
52
	buttons: {
53
		"ok":           "OK",
54
		"cancel":       "Annuler"
55
	},
56

    
57
	msg: {
58
		"Path":         "Chemin",
59
		"TEXT_MODE":    "Vous ?tes en mode texte.  Utilisez le bouton [<>] pour revenir au mode WYSIWIG."
60
	}
61
};
(10-10/30)