Well it seems that the i18n module you're using is quite old. This line 
[https://github.com/Parashurama/nim-i18n/blob/master/i18n.nim#L198](https://github.com/Parashurama/nim-i18n/blob/master/i18n.nim#L198)
 is not valid anymore since isNil is deprecated since Nim version 0.20. You'd 
have to rewrite it to something like:
    
    
     while not self.entries[index].value == ""
    
    
    Run

Reply via email to