I'm Finnish, but I write all my code in English. You can never know who will maintain your code after many years, so it's best to have the code and its documentation in a common language, and English is the industry standard language in programming.
In documents and UI prototypes that need to be shown to the users and clients, I might use Finnish, so that the users and clients would understand them better. But they don't need to see the code, so that should always be in English.
The only exception I can think of, is writing some domain specific code which is dealing with business concepts and not technical concepts. In that case it might make the code more readable if you use the same language as what the business people use. See Domain Driven Design and Ubiquitous Language. For example if the system deals with local tax laws, some of the words might not even have an English equivalent. In this situation, writing the code in non-English language can make it easier to understand, because the developer does not need to map the names in the code into domain concepts.
But the most common places where I've seen code written in Finnish is in elementary programming courses and books. And even there I think that it would be best to have everything in English, so that the new programmers will never get used to writing code in any other language. (And if they anyways decide to use Finnish, at least write it properly with letters Ä and Ö instead of A and O! At least Java supports all Unicode characters in method and variable names, so you can even write them with Chinese characters, if you so feel like.)