diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog
index 8e8c505d69..fbd6bf4337 100644
--- a/pandora_console/ChangeLog
+++ b/pandora_console/ChangeLog
@@ -1,3 +1,8 @@
+2012-06-13 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
+
+	* godmode/agentes/module_manager_editor.php: Fixed strings of link
+	and unlink actions due to bad translation.
+
 2012-06-13 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
 
 	* godmode/alerts/alert_list.builder.php: Fixed creation of alert
diff --git a/pandora_console/godmode/agentes/module_manager_editor.php b/pandora_console/godmode/agentes/module_manager_editor.php
index c985fd08b1..ac16428b8e 100644
--- a/pandora_console/godmode/agentes/module_manager_editor.php
+++ b/pandora_console/godmode/agentes/module_manager_editor.php
@@ -259,7 +259,7 @@ if($is_function_policies !== ENTERPRISE_NOT_HOOK) {
 		}
 		else {
 			$result = policies_relink_module($id_agent_module);
-			ui_print_result_message($result, __('Module relinked to the policy successful'));
+			ui_print_result_message($result, __('Module will be linked in the next application'));
 			
 			db_pandora_audit("Agent management", "Re-link module " . $id_agent_module);
 		}
@@ -267,7 +267,7 @@ if($is_function_policies !== ENTERPRISE_NOT_HOOK) {
 
 	if($unlink_policy) {
 		$result = policies_unlink_module($id_agent_module);
-		ui_print_result_message($result, __('Module unlinked from the policy successful'));
+		ui_print_result_message($result, __('Module will be unlinked in the next application'));
 		
 		db_pandora_audit("Agent management", "Unlink module " . $id_agent_module);
 	}