It would be nice if there was an engrish filter.
It would be nice if someone wrote one, I suppose. Volenteers?
God eneving I have try to dink about this, and find these informations: https://engrish.com https://www.reddit.com/r/engrish/ https://en.wikipedia.org/wiki/Engrish But when I read these things, I get so much tears of laughing, very hard to concentration to write such filter! Here's any simply replacements the filter must mkae: All "Don't" could be replaced by "No" Wi-Fi with Wi-fe or Fi-Wi really -> really understand -> under stans glad -> gland What would "Debian the universal system" become in engrish? From the bottom of my heart,
prototype:
$ cat engrish
#!/bin/bash
echo "$@" | sed "s,best regards,from the bottom of my heard,g" \
| sed "s,glad,gland,g" \
| sed "s,understand,under stans,g" \
| sed "s,really,raelly,g" \
| sed "s,don't,no,g"
./engrish "don't feed the pets. really it is forbidden. we are glad if
you follow and understand these basic rules. best regards"
no feed the pets. raelly it is forbidden. we are gland if you follow and
under stans these basic rules. from the bottom of my heard
it's a start?