Currently, when decompiling logic files, the object names are explicitly written.
For example, from PQ1:
if (has("Patrol Car Keys"))
However, this complicates things when the object names are translated, because it's not enough to update the objects files, but the object name has to be searched for in all logic files and updated. And if the translation is fixed, again, all the usage places should be updated.
It'd be much easier if it was possible to just retain the the i- syntax:
if (has(i1))
(similarly to the option "Show message arguments by number")
Thanks