Upgrade to ExtJS 3.2.1 - Released 04/27/2010
[extjs.git] / docs / source / ext-lang-fr_CA.html
1 <html>
2 <head>
3   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />    
4   <title>The source code</title>
5     <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
6     <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
7 </head>
8 <body  onload="prettyPrint();">
9     <pre class="prettyprint lang-js">/*!
10  * Ext JS Library 3.2.1
11  * Copyright(c) 2006-2010 Ext JS, Inc.
12  * licensing@extjs.com
13  * http://www.extjs.com/license
14  */
15 /*
16  * France (Canadian) translation
17  * By BernardChhun
18  * 04-08-2007, 03:07 AM
19  */
20
21 Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">En cours de chargement...</div>';
22
23 if(Ext.View){
24    Ext.View.prototype.emptyText = "";
25 }
26
27 if(Ext.grid.GridPanel){
28    Ext.grid.GridPanel.prototype.ddText = "{0} ligne(s) sélectionné(s)";
29 }
30
31 if(Ext.TabPanelItem){
32    Ext.TabPanelItem.prototype.closeText = "Fermer cette onglet";
33 }
34
35 if(Ext.form.Field){
36    Ext.form.Field.prototype.invalidText = "La valeur de ce champ est invalide";
37 }
38
39 if(Ext.LoadMask){
40     Ext.LoadMask.prototype.msg = "En cours de chargement...";
41 }
42
43 Date.shortMonthNames = [
44    "Janv",
45    "Févr",
46    "Mars",
47    "Avr",
48    "Mai",
49    "Juin",
50    "Juil",
51    "Août",
52    "Sept",
53    "Oct",
54    "Nov",
55    "Déc"
56 ];
57
58 Date.getShortMonthName = function(month) {
59   return Date.shortMonthNames[month];
60 };
61
62 Date.monthNames = [
63    "Janvier",
64    "Février",
65    "Mars",
66    "Avril",
67    "Mai",
68    "Juin",
69    "Juillet",
70    "Août",
71    "Septembre",
72    "Octobre",
73    "Novembre",
74    "Décembre"
75 ];
76
77 Date.monthNumbers = {
78   "Janvier" : 0,
79   "Février" : 1,
80   "Mars" : 2,
81   "Avril" : 3,
82   "Mai" : 4,
83   "Juin" : 5,
84   "Juillet" : 6,
85   "Août" : 7,
86   "Septembre" : 8,
87   "Octobre" : 9,
88   "Novembre" : 10,
89   "Décembre" : 11
90 };
91
92 Date.getMonthNumber = function(name) {
93   return Date.monthNumbers[Ext.util.Format.capitalize(name)];
94 };
95
96 Date.dayNames = [
97    "Dimanche",
98    "Lundi",
99    "Mardi",
100    "Mercredi",
101    "Jeudi",
102    "Vendredi",
103    "Samedi"
104 ];
105
106 Date.getShortDayName = function(day) {
107   return Date.dayNames[day].substring(0, 3);
108 };
109
110 if(Ext.MessageBox){
111    Ext.MessageBox.buttonText = {
112       ok     : "OK",
113       cancel : "Annuler",
114       yes    : "Oui",
115       no     : "Non"
116    };
117 }
118
119 if(Ext.util.Format){
120    Ext.util.Format.date = function(v, format){
121       if(!v) return "";
122       if(!(v instanceof Date)) v = new Date(Date.parse(v));
123       return v.dateFormat(format || "d/m/Y");
124    };
125 }
126
127 if(Ext.DatePicker){
128    Ext.apply(Ext.DatePicker.prototype, {
129       todayText         : "Aujourd'hui",
130       minText           : "Cette date est plus petite que la date minimum",
131       maxText           : "Cette date est plus grande que la date maximum",
132       disabledDaysText  : "",
133       disabledDatesText : "",
134       monthNames        : Date.monthNames,
135       dayNames          : Date.dayNames,
136       nextText          : 'Prochain mois (CTRL+Fléche droite)',
137       prevText          : 'Mois précédent (CTRL+Fléche gauche)',
138       monthYearText     : 'Choissisez un mois (CTRL+Fléche haut ou bas pour changer d\'année.)',
139       todayTip          : "{0} (Barre d'espace)",
140       format            : "d/m/y"
141    });
142 }
143
144 if(Ext.PagingToolbar){
145    Ext.apply(Ext.PagingToolbar.prototype, {
146       beforePageText : "Page",
147       afterPageText  : "de {0}",
148       firstText      : "Première page",
149       prevText       : "Page précédente",
150       nextText       : "Prochaine page",
151       lastText       : "Dernière page",
152       refreshText    : "Recharger la page",
153       displayMsg     : "Page courante {0} - {1} de {2}",
154       emptyMsg       : 'Aucune donnée à afficher'
155    });
156 }
157
158 if(Ext.form.TextField){
159    Ext.apply(Ext.form.TextField.prototype, {
160       minLengthText : "La longueur minimum de ce champ est de {0} caractères",
161       maxLengthText : "La longueur maximum de ce champ est de {0} caractères",
162       blankText     : "Ce champ est obligatoire",
163       regexText     : "",
164       emptyText     : null
165    });
166 }
167
168 if(Ext.form.NumberField){
169    Ext.apply(Ext.form.NumberField.prototype, {
170       minText : "La valeur minimum de ce champ doit être de {0}",
171       maxText : "La valeur maximum de ce champ doit être de {0}",
172       nanText : "{0} n'est pas un nombre valide"
173    });
174 }
175
176 if(Ext.form.DateField){
177    Ext.apply(Ext.form.DateField.prototype, {
178       disabledDaysText  : "Désactivé",
179       disabledDatesText : "Désactivé",
180       minText           : "La date de ce champ doit être avant le {0}",
181       maxText           : "La date de ce champ doit être après le {0}",
182       invalidText       : "{0} n'est pas une date valide - il doit être au format suivant: {1}",
183       format            : "d/m/y"
184    });
185 }
186
187 if(Ext.form.ComboBox){
188    Ext.apply(Ext.form.ComboBox.prototype, {
189       loadingText       : "En cours de chargement...",
190       valueNotFoundText : undefined
191    });
192 }
193
194 if(Ext.form.VTypes){
195    Ext.apply(Ext.form.VTypes, {
196       emailText    : 'Ce champ doit contenir un courriel et doit être sous ce format: "usager@example.com"',
197       urlText      : 'Ce champ doit contenir une URL sous le format suivant: "http:/'+'/www.example.com"',
198       alphaText    : 'Ce champ ne peut contenir que des lettres et le caractère souligné (_)',
199       alphanumText : 'Ce champ ne peut contenir que des caractères alphanumériques ainsi que le caractère souligné (_)'
200    });
201 }
202
203 if(Ext.grid.GridView){
204    Ext.apply(Ext.grid.GridView.prototype, {
205       sortAscText  : "Tri ascendant",
206       sortDescText : "Tri descendant",
207       lockText     : "Verrouillé la colonne",
208       unlockText   : "Déverrouillé la colonne",
209       columnsText  : "Colonnes"
210    });
211 }
212
213 if(Ext.grid.PropertyColumnModel){
214    Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
215       nameText   : "Propriété",
216       valueText  : "Valeur",
217       dateFormat : "d/m/Y"
218    });
219 }
220
221 if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
222    Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
223       splitTip            : "Cliquer et glisser pour redimensionner le panneau.",
224       collapsibleSplitTip : "Cliquer et glisser pour redimensionner le panneau. Double-cliquer pour cacher le panneau."
225    });
226 }
227 </pre>    
228 </body>
229 </html>