~mortenoh/+junk/dhis2-detailed-import-export

« back to all changes in this revision

Viewing changes to gis/dhis-gis-geostat/mfbase/ext/source/locale/ext-lang-fr_CA.js

  • Committer: larshelge at gmail
  • Date: 2009-03-03 16:46:36 UTC
  • Revision ID: larshelge@gmail.com-20090303164636-2sjlrquo7ib1gf7r
Initial check-in

Show diffs side-by-side

added added

removed removed

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