# HG changeset patch # User Matti Hamalainen # Date 1298615292 -7200 # Node ID b47f874db6be184c54d47fa0777371fead15fd50 # Parent d406e14b870d9467a366d0095bd49f733e3f3dea Change language to English. diff -r d406e14b870d -r b47f874db6be game/Engine.java --- a/game/Engine.java Fri Feb 25 08:27:23 2011 +0200 +++ b/game/Engine.java Fri Feb 25 08:28:12 2011 +0200 @@ -433,7 +433,7 @@ g.setFont(font1); g.setPaint(Color.white); - g.drawString("RistiPolku v0.5", x + 10, y + 25); + g.drawString("RistiPolku (CrossPaths) v0.5", x + 10, y + 25); if (aboutSecret) { g.drawImage(aboutImg, x + 15, y + 35, aboutImg.getWidth(), aboutImg.getHeight(), null); @@ -445,7 +445,10 @@ else { g.drawString("(c) Copyright 2011 Matti 'ccr' Hämäläinen", x + 10, y + 55); - g.drawString("Ohjelmointiprojekti Java-kurssille T740306", x + 10, y + 105); + + g.setPaint(Color.white); + g.drawString("Programming project for Java-course", x + 10, y + 105); + g.drawString("T740306 taught by Kari Laitinen.", x + 10, y + 135); } } @@ -658,7 +661,7 @@ { public BtnNewGame(float x, float y) { - super(x, y, KeyEvent.VK_ESCAPE, font1, "Uusi peli"); + super(x, y, KeyEvent.VK_ESCAPE, font1, "New Game"); } public void clicked() @@ -671,7 +674,7 @@ { public BtnSwapPiece(float x, float y) { - super(x, y, KeyEvent.VK_SPACE, font1, "Vaihda"); + super(x, y, KeyEvent.VK_SPACE, font1, "Swap"); } public void clicked() @@ -684,7 +687,7 @@ { public BtnAbout(float x, float y) { - super(x, y, KeyEvent.VK_A, font1, "Tietoja"); + super(x, y, KeyEvent.VK_A, font1, "About"); } public void clicked() diff -r d406e14b870d -r b47f874db6be graphics/board.jpg Binary file graphics/board.jpg has changed