mirror of
https://github.com/igniterealtime/Spark.git
synced 2025-12-01 12:27:58 +00:00
i18n fixes
git-svn-id: http://svn.igniterealtime.org/svn/repos/spark/trunk@9053 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
@ -86,18 +86,18 @@ public class BroadcastDialog extends JPanel {
|
||||
}
|
||||
|
||||
messageBox = new JTextArea();
|
||||
normalMessageButton = new JRadioButton("Normal Message");
|
||||
alertMessageButton = new JRadioButton("Alert Notification");
|
||||
normalMessageButton = new JRadioButton(Res.getString("message.normal"));
|
||||
alertMessageButton = new JRadioButton(Res.getString("message.alert.notify"));
|
||||
|
||||
ButtonGroup group = new ButtonGroup();
|
||||
group.add(normalMessageButton);
|
||||
group.add(alertMessageButton);
|
||||
|
||||
final JScrollPane pane = new JScrollPane(messageBox);
|
||||
pane.setBorder(BorderFactory.createTitledBorder("Message"));
|
||||
pane.setBorder(BorderFactory.createTitledBorder(Res.getString("message")));
|
||||
|
||||
final JScrollPane treePane = new JScrollPane(checkTree);
|
||||
treePane.setBorder(BorderFactory.createTitledBorder("Send to these people"));
|
||||
treePane.setBorder(BorderFactory.createTitledBorder(Res.getString("message.send.to.these.people")));
|
||||
|
||||
// Add to UI
|
||||
add(pane, new GridBagConstraints(0, 0, 1, 1, 0.5, 1.0, GridBagConstraints.WEST, GridBagConstraints.BOTH, new Insets(5, 5, 5, 5), 0, 0));
|
||||
|
||||
Reference in New Issue
Block a user