plugins/canfestival/config_utils.py
changeset 415 339fa2542481
parent 361 331d698e1118
--- a/plugins/canfestival/config_utils.py	Thu Oct 08 16:37:58 2009 +0200
+++ b/plugins/canfestival/config_utils.py	Fri Oct 09 17:38:17 2009 +0200
@@ -332,7 +332,7 @@
             name = location["NAME"]
             if name in self.IECLocations:
                 if self.IECLocations[name]["type"] != COlocationtype:
-                    raise PDOmappingException, _("Conflict type for location \"%s\"") % name 
+                    raise PDOmappingException, _("Type conflict for location \"%s\"") % name 
             else:
                 # Get only the part of the location that concern this node
                 loc = location["LOC"][len(current_location):]
@@ -452,7 +452,7 @@
                     pdomapping = []
                     result = self.GetEmptyPDO(nodeid, pdotype)
                     if result is None:
-                        raise PDOmappingException, _("Impossible to define PDO mapping for node %02x") % nodeid
+                        raise PDOmappingException, _("Unable to define PDO mapping for node %02x") % nodeid
                     pdoindex, pdocobid, pdonbparams = result
                     for name, loc_infos in locations[pdotype]:
                         pdosize += loc_infos["size"]
@@ -466,7 +466,7 @@
                             pdomapping = [(name, loc_infos)]
                             result = self.GetEmptyPDO(nodeid, pdotype, pdoindex + 1)
                             if result is None:
-                                raise PDOmappingException, _("Impossible to define PDO mapping for node %02x") % nodeid
+                                raise PDOmappingException, _("Unable to define PDO mapping for node %02x") % nodeid
                             pdoindex, pdocobid, pdonbparams = result
                         else:
                             pdomapping.append((name, loc_infos))
@@ -614,7 +614,7 @@
         name = location["NAME"]
         if name in IECLocations:
             if IECLocations[name] != COlocationtype:
-                raise PDOmappingException, _("Conflict type for location \"%s\"") % name 
+                raise PDOmappingException, _("Type conflict for location \"%s\"") % name 
         else:
             # Get only the part of the location that concern this node
             loc = location["LOC"][len(current_location):]