]> dev.renevier.net Git - syp.git/blobdiff - js/admin.js
i18n and english translation
[syp.git] / js / admin.js
index c7be3dbb00abedaf53790952a4459e23bee1ea39..25e3e8c83c770ac0c8d5438da04fab9aeb4d0bd4 100644 (file)
@@ -123,7 +123,7 @@ var Admin = {
         this.moveFeatureControl.deactivate();
         this.selFeatureControl.activate();
         this.checkForFeatures();
-        $("#newfeature_button").show().val("ajouter un emplacement");
+        $("#newfeature_button").show().val(SypStrings.AddItem);
         $("#newfeature_button").unbind("click").click(function () {
             Admin.addNewFeature();
         });
@@ -230,7 +230,7 @@ var Admin = {
         this.currentFeature = feature;
         this.currentFeatureLocation = new OpenLayers.Pixel(feature.geometry.x, feature.geometry.y);
         $("#editor").show();
-        $("#instructions").text("Vous pouvez déplacer le marqueur en effectuant un glisser-déposer.");
+        $("#instructions").text(SypStrings.DragDropHowto);
         $("#title").val(feature.attributes.name);
         var fullDesc = $(feature.attributes.description).parent();
         $("#description").val(fullDesc.find('p').text());
@@ -250,7 +250,7 @@ var Admin = {
 
     checkForFeatures: function () {
         if (this.dataLayer.features.length != 0) {
-            $("#instructions").text("Pour modifier les données d'une image, sélectionnez le marqueur correspondant.");
+            $("#instructions").text(SypStrings.SelectHowto);
         }
     },
 
@@ -269,7 +269,7 @@ var Admin = {
         $("#newfeature_button").val("annuler");
         $("#newfeature_button").unbind("click").click(cancel);
 
-        $("#instructions").text("Cliquez sur la carte pour ajouter un marqueur.");
+        $("#instructions").text(SypStrings.AddHowto);
         this.selFeatureControl.deactivate();
         this.addFeatureControl.activate();
         FeatureMgr.reset();
@@ -395,7 +395,7 @@ var FeatureMgr = {
 
     ajaxReply: function (data) {
         if (!data) {
-            this.commError("Il s'est produit une erreur serveur.");
+            this.commError(SypStrings.ServerError);
             return;
         }
 
@@ -410,34 +410,34 @@ var FeatureMgr = {
                         Admin.reset();
                     break;
                     case "server":
-                        this.commError("Il s'est produit une erreur serveur.");
+                        this.commError(SypStrings.ServerError);
                         $("title").focus();
                     break;
                     case "unreferenced":
-                        this.commError("La fiche n'était pas référencée sur le serveur.");
+                        this.commError(SypStrings.UnreferencedError);
                         Admin.reloadLayer(Admin.dataLayer);
                         Admin.closeEditor();
                     break;
                     case "nochange":
-                        this.commError("Aucun changement n'a été effectué.");
+                        this.commError(SypStrings.NochangeError);
                         Admin.closeEditor();
                     break;
                     case "request":
-                        this.commError("Le serveur n'a pas compris la requête. Il s'agit probablement d'un bug dans SYP.");
+                        this.commError(SypStrings.RequestError);
                         $("title").focus();
                     break;
                     case "toobig":
-                        this.commError("L'image est trop grande et n'a pas été acceptée par le serveur.");
+                        this.commError(SypStrings.ToobigError);
                         $("#image_file").parent().html($("#image_file").parent().html());
                         $("#image_file").focus();
                     break;
                     case "notimage":
-                        this.commError("Le fichier ne semble pas être une image.");
+                        this.commError(SypStrings.NotimageError);
                         $("#image_file").parent().html($("#image_file").parent().html());
                         $("#image_file").focus();
                     break;
                     default:
-                        this.commError("Il s'est produit une erreur inconnue.");
+                        this.commError(SypStrings.UnknownError);
                         $("title").focus();
                     break;
                 }
@@ -445,7 +445,7 @@ var FeatureMgr = {
             case "success":
                 switch (xml.documentElement.getAttribute("request")) {
                     case "del":
-                        this.commSuccess("La suppression s'est déroulée correctement.");
+                        this.commSuccess(SypStrings.DelSucces);
                         var someFeature = false;
                         var self = this;
                         $.each($(xml).find("FEATURE,feature"), function () {
@@ -462,7 +462,7 @@ var FeatureMgr = {
                              }
                         });
                         if (someFeature == false) {
-                            this.commError("Le serveur a fait une réponse incohérente.");
+                            this.commError(SypStrings.UnconsistentError);
                         } else {
                             Admin.closeEditor();
                         }
@@ -503,20 +503,20 @@ var FeatureMgr = {
                         });
 
                         if (someFeature == false) {
-                            this.commError("Le serveur a fait une réponse incohérente.");
+                            this.commError(SypStrings.UnconsistentError);
                         } else {
-                            this.commSuccess("La sauvegarde s'est déroulée correctement.");
+                            this.commSuccess(SypStrings.UpdateSucces);
                             Admin.closeEditor();
                         }
 
                     break;
                     default:
-                        this.commError("Le serveur a fait une réponse incohérente.");
+                        this.commError(SypStrings.UnconsistentError);
                    break;
                 }
             break;
             default:
-                this.commError("Le serveur a fait une réponse incohérente.");
+                this.commError(SypStrings.UnconsistentError);
             break;
         }
     },
@@ -637,7 +637,7 @@ var pwdMgr = {
         }, 0);
 
         if (!data) {
-            this.commError("Il s'est produit une erreur serveur.");
+            this.commError(SypStrings.ServerError);
             $("#login_error").show();
             window.setTimeout(function() {
                     $("#password").focus().select();
@@ -650,16 +650,16 @@ var pwdMgr = {
             case "error":
                 switch (xml.documentElement.getAttribute("reason")) {
                     case "server":
-                        this.commError("Il s'est produit une erreur serveur.");
+                        this.commError(SypStrings.ServerError);
                     break;
                     case "unauthorized":
-                        this.commError("Le mot de passe n'est pas correct.");
+                        this.commError(SypStrings.UnauthorizedError);
                     break;
                     case "request":
-                        this.commError("Le serveur n'a pas compris la requête. Il s'agit probablement d'un bug dans SYP.");
+                        this.commError(SypStrings.RequestError);
                     break;
                     default:
-                        this.commError("Il s'est produit une erreur inconnue.");
+                        this.commError(SypStrings.UnknownError);
                     break;
                 }
                 $("#login_error").show();
@@ -672,7 +672,7 @@ var pwdMgr = {
                 $("#login_area").hide();
             break;
             default:
-                this.commError("Le serveur a fait une réponse incohérente.");
+                this.commError(SypStrings.UnconsistentError);
             break;
         }
     },