aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/plugin/sipaccregwizz
diff options
context:
space:
mode:
authorIngo Bauersachs <ingo@jitsi.org>2011-10-04 12:31:10 +0000
committerIngo Bauersachs <ingo@jitsi.org>2011-10-04 12:31:10 +0000
commita56e87c257a27d26e9f3d6971385b7457e0f3d58 (patch)
tree7cb9916f92dc2e4587e0f09b1fa93374056e5bd8 /src/net/java/sip/communicator/plugin/sipaccregwizz
parent7ec797b12c9f58064bbb4a981b814d98bfae326c (diff)
downloadjitsi-a56e87c257a27d26e9f3d6971385b7457e0f3d58.zip
jitsi-a56e87c257a27d26e9f3d6971385b7457e0f3d58.tar.gz
jitsi-a56e87c257a27d26e9f3d6971385b7457e0f3d58.tar.bz2
Add SIP Wizzard resource strings
Diffstat (limited to 'src/net/java/sip/communicator/plugin/sipaccregwizz')
-rw-r--r--src/net/java/sip/communicator/plugin/sipaccregwizz/SecurityPanel.java15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/net/java/sip/communicator/plugin/sipaccregwizz/SecurityPanel.java b/src/net/java/sip/communicator/plugin/sipaccregwizz/SecurityPanel.java
index 9c6a818..64b3994 100644
--- a/src/net/java/sip/communicator/plugin/sipaccregwizz/SecurityPanel.java
+++ b/src/net/java/sip/communicator/plugin/sipaccregwizz/SecurityPanel.java
@@ -163,7 +163,6 @@ public class SecurityPanel
this.regform = regform;
initComponents();
- actionPerformed(null);
}
private void initComponents()
@@ -227,15 +226,24 @@ public class SecurityPanel
c.weightx = 1;
mainPanel.add(new JSeparator(), c);
+
+ c.gridy++;
+ c.gridx = 1;
+ c.gridwidth = 2;
+ c.insets = new Insets(0, 20, 0, 0);
+ JLabel lblCipherInfo = new JLabel();
+ lblCipherInfo.setText(Resources
+ .getString("plugin.sipaccregwizz.CIPHER_SUITES"));
+ mainPanel.add(lblCipherInfo, c);
+
cipherModel = new CipherTableModel(regform.getRegistration()
.getSDesCipherSuites());
tabCiphers = new JTable(cipherModel);
+ tabCiphers.setShowGrid(false);
TableColumnModel tableColumnModel = tabCiphers.getColumnModel();
TableColumn tableColumn = tableColumnModel.getColumn(0);
tableColumn.setMaxWidth(tableColumn.getMinWidth());
c.gridy++;
- c.gridx = 1;
- c.gridwidth = 2;
c.insets = new Insets(0, 20, 0, 0);
mainPanel.add(tabCiphers, c);
}
@@ -275,6 +283,7 @@ public class SecurityPanel
ProtocolProviderFactory.SDES_ENABLED, false));
cipherModel.loadData(accountID.getAccountPropertyString(
ProtocolProviderFactory.SDES_CIPHER_SUITES));
+ actionPerformed(null);
}
public void actionPerformed(ActionEvent e)