View Javadoc

1   /**********************************************
2    * Copyright (C) 2009 Lukas Laag
3    * This file is part of lib-gwt-svg-chess.
4    * 
5    * libgwtsvg-chess is free software: you can redistribute it and/or modify
6    * it under the terms of the GNU General Public License as published by
7    * the Free Software Foundation, either version 3 of the License, or
8    * (at your option) any later version.
9    * 
10   * libgwtsvg-chess is distributed in the hope that it will be useful,
11   * but WITHOUT ANY WARRANTY; without even the implied warranty of
12   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   * GNU General Public License for more details.
14   * 
15   * You should have received a copy of the GNU General Public License
16   * along with libgwtsvg-chess.  If not, see http://www.gnu.org/licenses/
17   **********************************************/
18  package org.vectomatic.svg.chess;
19  
20  import com.google.gwt.core.client.GWT;
21  import com.google.gwt.i18n.client.Constants;
22  
23  public interface ChessConstants extends Constants {
24  	public static final ChessConstants INSTANCE =  GWT.create(ChessConstants.class);
25  	public String whitesVsBlacks();
26  	public String whitesVsComputer();
27  	public String blacksVsComputer();
28  	public String computerVsComputer();
29  	
30  	public String white();
31  	public String black();
32  	
33  	public String infoTab();
34  	public String settingsTab();
35  	public String aboutTab();
36  
37  	public String mode();
38  	public String reflectionTime();
39  	public String player();
40  	public String history();
41  	public String fen();
42  	public String advanced();
43  	
44  	public String undo();
45  	public String redo();
46  	public String restart();
47  	public String setFen();
48  
49  	public String whitesWin();
50  	public String blacksWin();
51  	public String draw();
52  	public String confirmRestart();
53  	public String confirmYes();
54  	public String confirmNo();
55  	public String waitMessage();
56  
57  	public String mt3s();
58  	public String mt10s();
59  	public String mt30s();
60  	public String mt1m();
61  	public String mt3m();
62  	public String mt10m();
63  	
64  	public String about();
65  }