I cannot figure out how to add Actionlisteners to the JButtons, any help would be much appreciated.
Actionlisteners
JButton
public class Translator extends
button.addActionListener();
In your case, it'll be:
french.addActionListener(this);
If you want to use the same ActionListener for all the three buttons, you can use the getSource() function of ActionEvent e to detect which button was actually pressed.