mformats[AU] = new JCheckBox(I18N.getResource("MFormatPane.AU"), false);
mformats[AIFF] = new JCheckBox(I18N.getResource("MFormatPane.AIFF"), false);
mformats[GSM] = new JCheckBox(I18N.getResource("MFormatPane.GSM"), false);
mformats[MP2] = new JCheckBox(I18N.getResource("MFormatPane.MP2"), false);
mformats[MP3] = new JCheckBox(I18N.getResource("MFormatPane.MP3"), false);
mformats[WAV] = new JCheckBox(I18N.getResource("MFormatPane.WAV"), false);
mformats[MOV] = new JCheckBox(I18N.getResource("MFormatPane.MOV"), false);
mformats[AVI] = new JCheckBox(I18N.getResource("MFormatPane.AVI"), false);
mformats[MPEG] = new JCheckBox(I18N.getResource("MFormatPane.MPEG"), false);
mformats[MVR] = new JCheckBox(I18N.getResource("MFormatPane.MVR"), false);
mformats[MIDI] = new JCheckBox(I18N.getResource("MFormatPane.MIDI"), false);
mformats[RMF] = new JCheckBox(I18N.getResource("MFormatPane.RMF"), false);
mformats[CDAUDIO] = new JCheckBox(I18N.getResource("MFormatPane.CDAUDIO"), false);
setLayout(new GridLayout(5,3));
this.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(), I18N.getResource("MFormatPane.TITLE")));
for ( int i = 0; i < 13; i++) {
mformats[i].setEnabled(false);
add(mformats[i]);
}