# 1. Everything like that doesn't start with '[' character is treated as comment
# 2. Format is:
#	[OLD_STRING]-[NEW_STRING_THAT_WILL_REPLACE_OLD_STRING]
#	or
#	[TOKEN]-[STRING_THAT_WILL_REPLACE_TOKEN]
#
# "Token" is a word - doesn't contain alpha character just after it, and just before.
#
# Example:
# 	[OK]-[OKAY]
#		will replace "okay" to "okayay"
#	[OK]-[OKAY]
#		won't replace "okay" to anything, but will do replace single "ok", to "okay".
# 
# 3. Use only CAPITALS letters.
[I WAS]-[HE WAS]
[I AM]-[HE IS]
[I]-[HE]
[ME]-[HIM]
[MY]-[HIS]
[MYSELF]-[HIMSELF]
[MINE]-[HIS]
[WITH YOU]-[WITH ME]
[TO YOU]-[TO ME]
[FOR YOU]-[FOR ME]
[ARE YOU]-[AM I]
[YOU]-[ME]
[YOUR]-[MY]
[YOURS]-[MINE]
[YOURSELF]-[MYSELF]
[ICH WAR]-[ER WAR]
[ICH BIN]-[ER IST]
[ICH]-[ER]
[MEIN]-[SEIN]
[MEINS]-[SEINS]
[MIT DIR]-[MIT MIR]
[DIR]-[MIR]
[FUER DICH]-[FUER MICH]
[BIST DU]-[BIN ICH]
[DU]-[ICH]
[DEIN]-[MEIN]
[DEINS]-[MEINS]
