aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/plugin/desktoputil
diff options
context:
space:
mode:
authorMarkus Kilås <markus@primekey.se>2014-08-02 14:44:07 +0200
committerMarkus Kilås <markus@primekey.se>2014-08-02 14:44:07 +0200
commitdfa09c310fefada02bbb839a5c598b447788fa2a (patch)
tree475835f23e9ac8883b3998c4aae25941cc35ed60 /src/net/java/sip/communicator/plugin/desktoputil
parent8317166f2f2e6a2db7727e5ca5d2165adabaf7ec (diff)
downloadjitsi-dfa09c310fefada02bbb839a5c598b447788fa2a.zip
jitsi-dfa09c310fefada02bbb839a5c598b447788fa2a.tar.gz
jitsi-dfa09c310fefada02bbb839a5c598b447788fa2a.tar.bz2
Missed one i18n string.
Diffstat (limited to 'src/net/java/sip/communicator/plugin/desktoputil')
-rw-r--r--src/net/java/sip/communicator/plugin/desktoputil/X509CertificatePanel.java10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/net/java/sip/communicator/plugin/desktoputil/X509CertificatePanel.java b/src/net/java/sip/communicator/plugin/desktoputil/X509CertificatePanel.java
index 6558bb9..6d5bacf 100644
--- a/src/net/java/sip/communicator/plugin/desktoputil/X509CertificatePanel.java
+++ b/src/net/java/sip/communicator/plugin/desktoputil/X509CertificatePanel.java
@@ -33,6 +33,9 @@ public class X509CertificatePanel
private final JEditorPane infoTextPane = new JEditorPane();
+ private final ResourceManagementService R
+ = DesktopUtilActivator.getResources();
+
/**
* Constructs a X509 certificate panel from a single certificate.
* If a chain is available instead use the second constructor.
@@ -57,9 +60,9 @@ public class X509CertificatePanel
// Certificate chain list
TransparentPanel topPanel = new TransparentPanel(new BorderLayout());
- topPanel.add(new JLabel(
- "<html><body><b>Certificate chain:</b></body></html>"),
- BorderLayout.NORTH);
+ topPanel.add(new JLabel("<html><body><b>"
+ + R.getI18NString("service.gui.CERT_INFO_CHAIN")
+ + "</b></body></html>"), BorderLayout.NORTH);
DefaultMutableTreeNode top = new DefaultMutableTreeNode();
DefaultMutableTreeNode previous = top;
@@ -139,7 +142,6 @@ public class X509CertificatePanel
private String toString(X509Certificate certificate)
{
final StringBuilder sb = new StringBuilder();
- ResourceManagementService R = DesktopUtilActivator.getResources();
X500Principal issuer = certificate.getIssuerX500Principal();
X500Principal subject = certificate.getSubjectX500Principal();