In the Java language even the users methods must be named (at least partially) using the English language because of the JavaBeans convention.
This convention requires that a property X be established via a pair of getX() and setX() methods. Here in French-Canada, where workers are legally obliged to work in the French language (in enterprises over a certain size) this leads to the following mess:
interface Foo {
Color getCouleur();
void setCouleur(Color couleur);
}