Multilanguage support

Czech language added
This commit is contained in:
Jindra Pet��k
2013-07-01 19:42:56 +02:00
parent 03932b6e69
commit f7bbb8577f
79 changed files with 1677 additions and 461 deletions
@@ -37,7 +37,7 @@ import javax.swing.JScrollPane;
*
* @author JPEXS
*/
public class GraphFrame extends JFrame {
public class GraphFrame extends AppFrame {
private class GraphPanel extends JPanel {
@@ -246,7 +246,7 @@ public class GraphFrame extends JFrame {
Container cnt = getContentPane();
cnt.setLayout(new BorderLayout());
gp = new GraphPanel(graph);
setTitle("Graph " + name);
setTitle(translate("graph") + " " + name);
cnt.add(new JScrollPane(gp));
View.setWindowIcon(this);