jsphpl / enpass-to-keepass

Convert an Enpass csv export so it can be imported to a KeePass database using KeePassXC
51 stars 7 forks source link

German Fields not mapped? #5

Open longtom99 opened 3 years ago

longtom99 commented 3 years ago

I used your script, Thanks a lot! It seems that my Enpass file contains English and German stored words. So all Passwort: xyxxy is not mapped to password and i have it in the Notes field. Also for Webseite: https://www.github.com is not mapped to Website, also then in Notes.

Bildschirmfoto 2021-07-10 um 12 11 05
Haschtl commented 2 years ago

I had the same problem. You can simply modify the mapping FIELD_ALIASES at the beginning of enpass-to-keepass.py. Just add the lines

  "webseite": "url",
  "passwort": "password",
longtom99 commented 2 years ago

Thanks!