Comment traduire Java Swing

// With Graphics object
g.translate(200, 200);
// With Graphics2d object
g2.translate(200, 200);
Pandata