diff options
Diffstat (limited to 'ishtar_common/static/js/i18n/grid.locale-fr.js')
| -rw-r--r-- | ishtar_common/static/js/i18n/grid.locale-fr.js | 62 |
1 files changed, 51 insertions, 11 deletions
diff --git a/ishtar_common/static/js/i18n/grid.locale-fr.js b/ishtar_common/static/js/i18n/grid.locale-fr.js index a7d22abe7..298e4b8b2 100644 --- a/ishtar_common/static/js/i18n/grid.locale-fr.js +++ b/ishtar_common/static/js/i18n/grid.locale-fr.js @@ -1,4 +1,3 @@ -;(function($){
/**
* jqGrid French Translation
* Tony Tomov tony@trirand.com
@@ -7,21 +6,55 @@ * http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
-$.jgrid = {
+/*global jQuery, define */
+(function( factory ) {
+ "use strict";
+ if ( typeof define === "function" && define.amd ) {
+ // AMD. Register as an anonymous module.
+ define([
+ "jquery",
+ "../grid.base"
+ ], factory );
+ } else {
+ // Browser globals
+ factory( jQuery );
+ }
+}(function( $ ) {
+
+$.jgrid = $.jgrid || {};
+if(!$.jgrid.hasOwnProperty("regional")) {
+ $.jgrid.regional = [];
+}
+$.jgrid.regional["fr"] = {
defaults : {
recordtext: "Enregistrements {0} - {1} sur {2}",
emptyrecords: "Aucun enregistrement à afficher",
loadtext: "Chargement...",
- pgtext : "Page {0} sur {1}"
+ savetext: "Saving...",
+ pgtext : "Page {0} sur {1}",
+ pgfirst : "First Page",
+ pglast : "Last Page",
+ pgnext : "Next Page",
+ pgprev : "Previous Page",
+ pgrecs : "Records per Page",
+ showhide: "Toggle Expand Collapse Grid",
+ // mobile
+ pagerCaption : "Grid::Page Settings",
+ pageText : "Page:",
+ recordPage : "Records per Page",
+ nomorerecs : "No more records...",
+ scrollPullup: "Pull up to load more...",
+ scrollPulldown : "Pull down to refresh...",
+ scrollRefresh : "Release to refresh..."
},
search : {
caption: "Recherche...",
Find: "Chercher",
- Reset: "Annuler",
- odata : ['égal', 'différent', 'inférieur', 'inférieur ou égal','supérieur','supérieur ou égal', 'commence par','ne commence pas par','est dans',"n'est pas dans",'finit par','ne finit pas par','contient','ne contient pas'],
- groupOps: [ { op: "AND", text: "tous" }, { op: "OR", text: "aucun" } ],
- matchText: " correspondance",
- rulesText: " règles"
+ Reset: "Réinitialiser",
+ odata: [{ oper:'eq', text:"égal"},{ oper:'ne', text:"différent"},{ oper:'lt', text:"inférieur"},{ oper:'le', text:"inférieur ou égal"},{ oper:'gt', text:"supérieur"},{ oper:'ge', text:"supérieur ou égal"},{ oper:'bw', text:"commence par"},{ oper:'bn', text:"ne commence pas par"},{ oper:'in', text:"est dans"},{ oper:'ni', text:"n'est pas dans"},{ oper:'ew', text:"finit par"},{ oper:'en', text:"ne finit pas par"},{ oper:'cn', text:"contient"},{ oper:'nc', text:"ne contient pas"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],
+ groupOps: [ { op: "AND", text: "tous" }, { op: "OR", text: "au moins un" } ],
+ operandTitle : "Click to select search operation.",
+ resetTitle : "Reset Search Value"
},
edit : {
addCaption: "Ajouter",
@@ -71,7 +104,12 @@ $.jgrid = { alertcap: "Avertissement",
alerttext: "Veuillez sélectionner une ligne",
viewtext: "",
- viewtitle: "Afficher la ligne sélectionnée"
+ viewtitle: "Afficher la ligne sélectionnée",
+ savetext: "",
+ savetitle: "Save row",
+ canceltext: "",
+ canceltitle : "Cancel row editing",
+ selectcaption : "Actions..."
},
col : {
caption: "Afficher/Masquer les colonnes",
@@ -101,6 +139,7 @@ $.jgrid = { S: function (j) {return j == 1 ? 'er' : 'e';},
srcformat: 'Y-m-d',
newformat: 'd/m/Y',
+ parseRe : /[#%\\\/:_;.,\t\s-]/,
masks : {
ISO8601Long:"Y-m-d H:i:s",
ISO8601Short:"Y-m-d",
@@ -114,7 +153,8 @@ $.jgrid = { UniversalSortableDateTime: "Y-m-d H:i:sO",
YearMonth: "F, Y"
},
- reformatAfterEdit : false
+ reformatAfterEdit : false,
+ userLocalTime : false
},
baseLinkUrl: '',
showAction: '',
@@ -123,4 +163,4 @@ $.jgrid = { idName : 'id'
}
};
-})(jQuery);
+}));
|
