ext-lang-fr_CA.js
上传用户:qfccsy
上传日期:2022-03-27
资源大小:716k
文件大小:5k
源码类别:

ListView/ListBox

开发平台:

Java

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