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