I know my question does not seem valid, but it is genuine. When writing java I must use the word import so as to import classes from classpath. It is required t
Java doesn't provide any way to redefine keywords.
If you add or remove keywords to the Java language, then it isn't Java anymore.
You could write your own language that compiles to Java. This could be as simple as writing a program that does a string replace of uvoziti for import and then runs it through the javac compiler.