In the Java language even the users some 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 some developers are legally obliged to work code in the French language (in enterprises over a certain size) this leads to the following messtravesty:
interface Foo {
Color getCouleur();
void setCouleur(Color couleur);
}
