diff --git a/src/module_vmap/module/forms/vmap_business_object/vmap_business_object_vmap_business_object.json b/src/module_vmap/module/forms/vmap_business_object/vmap_business_object_vmap_business_object.json
index 4d4b9a0414baa089f53efb84e0a515ab4dfd82c5..7dea0252d242dfedad6b2d5a00b345d4129d7bb7 100644
--- a/src/module_vmap/module/forms/vmap_business_object/vmap_business_object_vmap_business_object.json
+++ b/src/module_vmap/module/forms/vmap_business_object/vmap_business_object_vmap_business_object.json
@@ -544,7 +544,8 @@
                         "name": "location_placeholder",
                         "label": "FORM_LOCATION_PLACEHOLDER_VMAP_BUSINESS_OBJECT",
                         "nb_cols": 4,
-                        "id": "bo_location_placeholder"
+                        "id": "bo_location_placeholder",
+                        "default_value": "Localiser..."
                     },
                     {
                         "type": "radio",
diff --git a/src/module_vmap/module/lang/lang-en.json b/src/module_vmap/module/lang/lang-en.json
index 8c8e25357f3f4812e9d092ea4824989cad50b7ff..1886712e70f395502e6800569c25f8e411591008 100644
--- a/src/module_vmap/module/lang/lang-en.json
+++ b/src/module_vmap/module/lang/lang-en.json
@@ -190,7 +190,7 @@
     "FORM_LOCATABLE_VMAP_BUSINESS_OBJECT": "Enable locate",
     "FORM_LOCATABLE_VMAP_BUSINESS_OBJECT_TOOLTIP": "Display the object on the locate tool",
     "LIST_DELETE_CONFIRM_VMAP_BUSINESS_OBJECT": "Delete the selected items and associations with layers?",
-    "FORM_LOCATION_PLACEHOLDER_VMAP_BUSINESS_OBJECT": "Location title",
+    "FORM_LOCATION_PLACEHOLDER_VMAP_BUSINESS_OBJECT": "Location placeholder",
     "": "",
     "FORM_TITLE_VMAP_MODULE_MODULE": "Module {{::label}}",
     "FORM_LABEL_VMAP_MODULE_MODULE": "Label",
diff --git a/src/module_vmap/module/lang/lang-fr.json b/src/module_vmap/module/lang/lang-fr.json
index 78fa12119d1202c93e26198713759afffaf8f14d..0ac88683c207408ea5834ee26934aef5eb313e2d 100644
--- a/src/module_vmap/module/lang/lang-fr.json
+++ b/src/module_vmap/module/lang/lang-fr.json
@@ -190,7 +190,7 @@
     "FORM_LOCATABLE_VMAP_BUSINESS_OBJECT": "Objet localisable",
     "FORM_LOCATABLE_VMAP_BUSINESS_OBJECT_TOOLTIP": "Affiche l'objet dans la liste de l'outil de localisation (ne garantit pas la sécurité de la donnée)",
     "LIST_DELETE_CONFIRM_VMAP_BUSINESS_OBJECT": "Supprimer les objets métiers sélectionnés et les associations avec les calques ?",
-    "FORM_LOCATION_PLACEHOLDER_VMAP_BUSINESS_OBJECT": "Titre de la localisation",
+    "FORM_LOCATION_PLACEHOLDER_VMAP_BUSINESS_OBJECT": "Balise du champ localisation",
     "": "",
     "FORM_TITLE_VMAP_MODULE_MODULE": "Module {{::label}}",
     "FORM_LABEL_VMAP_MODULE_MODULE": "Libellé",
diff --git a/src/module_vmap/web_service/sql/sqlQueries.xml b/src/module_vmap/web_service/sql/sqlQueries.xml
index 10d6a568c8019ed4322ccca9dac574ced8ad2ae4..4a1e026efafc58a3a828aa29a84425e347e3d53d 100644
--- a/src/module_vmap/web_service/sql/sqlQueries.xml
+++ b/src/module_vmap/web_service/sql/sqlQueries.xml
@@ -1166,6 +1166,8 @@
 					UPDATE s_vmap.business_object SET enable_selection=true, enable_location=true;
 					-- Frédéric 18/01/2019 Placeholder dans la localisation
 					ALTER TABLE s_vmap.business_object ADD COLUMN location_placeholder character varying(100);
+					-- Armand 23/01/2019 Placeholder dans la localisation
+					UPDATE s_vmap.business_object set location_placeholder='Localiser...';
 				]]>
 			</code>
 		</query>